diff options
author | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-24 19:14:35 +0200 |
---|---|---|
committer | MrPaulBlack <paul.accounts@protonmail.com> | 2021-09-24 19:14:35 +0200 |
commit | 3017227c14882cff46298b6e849fe30a6bd1f9be (patch) | |
tree | c1830d258e7aec10e9b92d6b4bffaf96c0279e7e /searx/templates/simple/preferences.html | |
parent | 30a9146bdc75ef78c8b6906541e5e55910f5d1f3 (diff) | |
download | searxng-3017227c14882cff46298b6e849fe30a6bd1f9be.tar.gz searxng-3017227c14882cff46298b6e849fe30a6bd1f9be.zip |
[preferences] remove checkbox class from query section
Diffstat (limited to 'searx/templates/simple/preferences.html')
-rw-r--r-- | searx/templates/simple/preferences.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/searx/templates/simple/preferences.html b/searx/templates/simple/preferences.html index 17a22b00e..1164bd04f 100644 --- a/searx/templates/simple/preferences.html +++ b/searx/templates/simple/preferences.html @@ -297,7 +297,7 @@ <tr> <td></td> <td>{{ answerer.keywords|join(', ') }}</td> - <td><div class="checkbox">{{ answerer.info.name }}</div></td> + <td>{{ answerer.info.name }}</td> <td>{{ answerer.info.description }}</td> <td>{{ answerer.info.examples|join(', ') }}</td> </tr> @@ -309,7 +309,7 @@ <tr> <td>{{- checkbox_onoff('plugin_' + plugin.id, plugin.id not in allowed_plugins) -}}</td> <td>{{ plugin.query_keywords|join(', ') }}</td> - <td><div class="checkbox">{{ _(plugin.name) }}</div></td> + <td>{{ _(plugin.name) }}</td> <td>{{ _(plugin.description) }}</td> <td>{{ plugin.query_examples }}</td> </tr> |