mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-24 14:37:44 +00:00
* 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
5 lines
232 B
TypeScript
5 lines
232 B
TypeScript
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);
|