mirror of
https://github.com/searxng/searxng
synced 2024-11-18 15:26:25 +00:00
hide suggestions box if empty
This bug happens only in python3 because map returns an iterator.
This commit is contained in:
parent
5706c12fba
commit
495ae59b31
@ -606,11 +606,11 @@ def index():
|
|||||||
# HTML output format
|
# HTML output format
|
||||||
|
|
||||||
# suggestions: use RawTextQuery to get the suggestion URLs with the same bang
|
# suggestions: use RawTextQuery to get the suggestion URLs with the same bang
|
||||||
suggestion_urls = map(lambda suggestion: {
|
suggestion_urls = list(map(lambda suggestion: {
|
||||||
'url': raw_text_query.changeSearchQuery(suggestion).getFullQuery(),
|
'url': raw_text_query.changeSearchQuery(suggestion).getFullQuery(),
|
||||||
'title': suggestion
|
'title': suggestion
|
||||||
},
|
},
|
||||||
result_container.suggestions)
|
result_container.suggestions))
|
||||||
|
|
||||||
correction_urls = list(map(lambda correction: {
|
correction_urls = list(map(lambda correction: {
|
||||||
'url': raw_text_query.changeSearchQuery(correction).getFullQuery(),
|
'url': raw_text_query.changeSearchQuery(correction).getFullQuery(),
|
||||||
|
Loading…
Reference in New Issue
Block a user