Skip to content
Snippets Groups Projects
Commit 120bd56a authored by Rajmund Hruška's avatar Rajmund Hruška
Browse files

Fix: Sort by credibility descending. (Redmine issue: #7577)

parent 3caad51d
No related branches found
No related tags found
No related merge requests found
...@@ -178,7 +178,7 @@ class DetectorSearchForm(hawat.forms.BaseSearchForm): ...@@ -178,7 +178,7 @@ class DetectorSearchForm(hawat.forms.BaseSearchForm):
('hits.desc', lazy_gettext('by number of hits descending')), ('hits.desc', lazy_gettext('by number of hits descending')),
('hits.asc', lazy_gettext('by number of hits ascending')), ('hits.asc', lazy_gettext('by number of hits ascending')),
('credibility.asc', lazy_gettext('by credibility ascending')), ('credibility.asc', lazy_gettext('by credibility ascending')),
('credibility.asc', lazy_gettext('by credibility descending')) ('credibility.desc', lazy_gettext('by credibility descending'))
], ],
default='name.asc' default='name.asc'
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment