revert textarea component to conenteditable

This commit is contained in:
Chris Kruining 2025-03-03 10:57:10 +01:00
parent 925ea142fb
commit c6c7240fee
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
3 changed files with 30 additions and 11 deletions

View file

@ -103,7 +103,7 @@ export function createSource(value: Accessor<string>): Source {
});
createEffect(() => {
setStore('metadata', 'queryResults', findMatches(store.plain, store.query).toArray());
setStore('metadata', 'queryResults', findMatches(store.plain, store.query));
});
return src;