Spaces:
Running
Running
List all boxes by default.
Browse files
web/src/NodeSearch.svelte
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
export let pos;
|
6 |
export let boxes;
|
7 |
let searchBox: HTMLInputElement;
|
8 |
-
let hits =
|
9 |
let selectedIndex = 0;
|
10 |
onMount(() => searchBox.focus());
|
11 |
$: fuse = new Fuse(boxes, {
|
|
|
5 |
export let pos;
|
6 |
export let boxes;
|
7 |
let searchBox: HTMLInputElement;
|
8 |
+
let hits = boxes.map(box => ({item: box}));
|
9 |
let selectedIndex = 0;
|
10 |
onMount(() => searchBox.focus());
|
11 |
$: fuse = new Fuse(boxes, {
|