mirror of https://github.com/searxng/searxng.git
[doc] engine-table: stop sorting by Disabled
It's only the default value for disabled it's not that important, since users can easily toggle it anytime in the engine preferences.
This commit is contained in:
parent
df34b1ddcf
commit
d8af94b721
|
@ -54,7 +54,7 @@ jinja_filters = {
|
|||
'sort_engines':
|
||||
lambda engines: sorted(
|
||||
engines,
|
||||
key=lambda engine: (engine[1].disabled, engine[1].about.get('language', ''), engine[0])
|
||||
key=lambda engine: (engine[1].about.get('language', ''), engine[0])
|
||||
)
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue