mirror of
https://github.com/graphql-hive/console
synced 2026-05-24 01:28:32 +00:00
parent
b9d8e2ceac
commit
3ae609e242
1 changed files with 1 additions and 1 deletions
|
|
@ -65,7 +65,7 @@ const OperationsFilter: React.FC<{
|
|||
);
|
||||
const [searchTerm, setSearchTerm] = React.useState('');
|
||||
const debouncedFilter = useDebouncedCallback((value: string) => {
|
||||
setVisibleOperations(operations.filter(op => op.name.toLocaleLowerCase().includes(value)));
|
||||
setVisibleOperations(operations.filter(op => op.name.toLocaleLowerCase().includes(value.toLocaleLowerCase())));
|
||||
}, 500);
|
||||
|
||||
const onChange = React.useCallback(
|
||||
|
|
|
|||
Loading…
Reference in a new issue