From 54eaf4186f7ab61202ea2e3f1f9b889c08fe39c6 Mon Sep 17 00:00:00 2001 From: Cadence Ember Date: Sun, 23 Nov 2025 02:03:20 +1300 Subject: [PATCH] provide way to access full results page --- static/search-suggestions.js | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/static/search-suggestions.js b/static/search-suggestions.js index fcd5ee6..0590205 100644 --- a/static/search-suggestions.js +++ b/static/search-suggestions.js @@ -59,10 +59,17 @@ function Suggestion(hit) { return html`
  • ` } +function DefaultSearch({q}) { + console.log(q) + if (!q) return "" + return html`
  • ` +} + function SuggestionList() { return html` ` }