Quellcode durchsuchen

search-input runtime-error fix

daviddeepan vor 1 Jahr
Ursprung
Commit
09c07e58e6

+ 5 - 2
web/apps/photos/src/components/Search/SearchBar/searchInput/index.tsx

@@ -56,8 +56,11 @@ export default function SearchInput(props: Iprops) {
     const [value, setValue] = useState<SearchOption>(null);
     const appContext = useContext(AppContext);
     const handleChange = (value: SearchOption) => {
-        setValue(value);
-        setQuery(value.label);
+        if (value) {
+            setValue(value);
+            setQuery(value.label);
+        }
+
         blur();
     };
     const handleInputChange = (value: string, actionMeta: InputActionMeta) => {