From e8d00149cf0bdca3c613c5317fc0618c1742550e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hugo=20H=C3=B6rnquist?= Date: Sun, 23 Aug 2020 00:06:42 +0200 Subject: GET /search without query now works. --- module/html/view/search.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'module/html/view/search.scm') diff --git a/module/html/view/search.scm b/module/html/view/search.scm index 2b93ebfc..12d8399f 100644 --- a/module/html/view/search.scm +++ b/module/html/view/search.scm @@ -10,7 +10,7 @@ ) (define-public (search-result-page - search-term search-result page paginator q=) + has-query? search-term search-result page paginator q=) (xhtml-doc (@ (lang sv)) (head (title "Search results") @@ -20,8 +20,9 @@ (form (pre (textarea (@ (name "q") (rows 5) (spellcheck false) (style "width:100%")) - ,(with-output-to-string - (lambda () (pretty-print search-term))))) + ,(when has-query? + (with-output-to-string + (lambda () (pretty-print search-term)))))) (input (@ (type submit)))) (h2 "Result (page " ,page ")") (ul -- cgit v1.2.3