diff options
author | Lea <me@janderedev.xyz> | 2023-01-17 10:31:57 +0100 |
---|---|---|
committer | Markus Heiser <markus.heiser@darmarIT.de> | 2023-02-10 15:33:25 +0100 |
commit | a530ac4099e2dea47f7ccb70b2034bd7f8c9279e (patch) | |
tree | dee61e23c5594bc0f73cd0329c594ffaebb3eed3 | |
parent | 415f6398d61cd35c42ca23c0daf1fc6ba8f2e7a5 (diff) | |
download | searxng-a530ac4099e2dea47f7ccb70b2034bd7f8c9279e.tar.gz searxng-a530ac4099e2dea47f7ccb70b2034bd7f8c9279e.zip |
fix: typo in suggestions
-rw-r--r-- | searx/templates/simple/results.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/searx/templates/simple/results.html b/searx/templates/simple/results.html index 755610e5b..f73a25d09 100644 --- a/searx/templates/simple/results.html +++ b/searx/templates/simple/results.html @@ -65,7 +65,7 @@ {% if suggestions %} <div id="suggestions" role="complementary" aria-labelledby="suggestions-title"> - <h4 class="title" id="suggestions-title">{{ _('Suggestions') }} : </h4> + <h4 class="title" id="suggestions-title">{{ _('Suggestions') }}: </h4> <div class="wrapper"> {% for suggestion in suggestions %} <form method="{{ method or 'POST' }}" action="{{ url_for('search') }}"> |