Browse Source

input -> search

visuddhinanda 2 years ago
parent
commit
695a7117d4

+ 1 - 1
dashboard/src/components/dict/SearchVocabulary.tsx

@@ -127,7 +127,7 @@ const SearchVocabularyWidget = ({ value, onSplit, onSearch }: IWidget) => {
       >
         <Input.Search
           size="large"
-          placeholder="input here"
+          placeholder="search here"
           onSearch={(value: string) => {
             console.log("on search", value);
             if (typeof onSearch !== "undefined") {

+ 1 - 1
dashboard/src/components/fts/FullSearchInput.tsx

@@ -147,7 +147,7 @@ const FullSearchInputWidget = ({
         <Input.Search
           size={size}
           width={width}
-          placeholder="input here"
+          placeholder="search here"
           onSearch={(value: string) => {
             console.log("on search", value, tags);
             if (typeof onSearch !== "undefined") {