diff options
-rw-r--r-- | TODO.md | 3 | ||||
-rw-r--r-- | views/data.jade | 8 |
2 files changed, 10 insertions, 1 deletions
@@ -32,3 +32,6 @@ * BUG: when executing queries, the URL in the "http response" section is not the correct url, it's missing the query parameters. + +* Add an OpenSearch document to the root page so that people can add + the site as an search engine. diff --git a/views/data.jade b/views/data.jade index 948053b..9dd54e4 100644 --- a/views/data.jade +++ b/views/data.jade @@ -220,7 +220,13 @@ block error dt message dd if collection.error.message - | #{collection.error.message} + - var lines = collection.error.message.split('\n') + if lines.length > 1 + for line in lines + | #{line.replace(/ /g, ' ')} + br + else + | #{collection.error.message} else i Not set |