From 23a12da0e6ee005b983aa5fd2d2ed406a1af6353 Mon Sep 17 00:00:00 2001 From: Julian Gonggrijp Date: Wed, 28 Jul 2021 21:35:47 +0200 Subject: [PATCH] Pass semantic query model to SearchResultListView (#486) --- frontend/src/explorer/explorer-event-controller.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/explorer/explorer-event-controller.ts b/frontend/src/explorer/explorer-event-controller.ts index 0f21f69c..d51e9815 100644 --- a/frontend/src/explorer/explorer-event-controller.ts +++ b/frontend/src/explorer/explorer-event-controller.ts @@ -95,6 +95,7 @@ class ExplorerEventController { if (model.isNew()) model.save(); const collection = new FlatItemCollection(items); const resultsView = new SearchResultListView({ + model, collection, selectable: false, });