Yuki Takei 4 ani în urmă
părinte
comite
e87fd88868
1 a modificat fișierele cu 2 adăugiri și 2 ștergeri
  1. 2 2
      packages/app/src/components/SearchForm.tsx

+ 2 - 2
packages/app/src/components/SearchForm.tsx

@@ -123,15 +123,15 @@ const SearchForm: ForwardRefRenderFunction<IFocusable, Props> = (props: Props, r
       dropup={dropup}
       emptyLabel={emptyLabel}
       placeholder={placeholder}
-      disableIncrementalSearch={disableIncrementalSearch}
       onChange={onChange}
       onSubmit={onSubmit}
       onInputChange={onInputChange}
       onSearchError={err => setSearchError(err)}
       onBlur={onBlur}
       onFocus={onFocus}
-      helpElement={<SearchFormHelp isReachable={isSearchServiceReachable} />}
       keywordOnInit={keywordOnInit}
+      disableIncrementalSearch={disableIncrementalSearch}
+      helpElement={<SearchFormHelp isReachable={isSearchServiceReachable} />}
     />
   );
 };