[F] Use keyup instead of change

This commit is contained in:
Azalea Gui
2023-02-16 18:03:19 -05:00
parent 6a8054466d
commit 1c80a82e28
+1 -1
View File
@@ -109,7 +109,7 @@ export default function App() {
{/* Search bar */}
<Show when={searchOn()} keyed>
<input ref={searchInp} class="bg-transparent flex-1 outline-none"
value={search()} onchange={searchChange} />
value={search()} onkeyup={searchChange} />
</Show>
{/* Breadcrumbs */}