fix(web): cannot use semicolon on the search bar in asset grid page (#3334)

* fix(web): cannot use semicolon on the search bar

* fix(web): cannot use semicolon on the search bar

* remove console log

* fix: disable hotkey when search is enable

* format

* fix event listener removal
This commit is contained in:
Alex
2023-07-19 11:03:23 -05:00
committed by GitHub
parent f0302670d2
commit 9f7bf36786
3 changed files with 36 additions and 6 deletions

View File

@@ -1,3 +1,5 @@
import { persisted } from 'svelte-local-storage-store';
import { writable } from 'svelte/store';
export const savedSearchTerms = persisted<string[]>('search-terms', [], {});
export const isSearchEnabled = writable<boolean>(false);