FIX: ensures category order keeps consistent (#10165)

Before this change:
- first full page load would get category defaults defined un cateory settings
- a navigation to a topic and then back to categories list would reset defaut to the ones defined in discovery/topics
This commit is contained in:
Joffrey JAFFEUX
2020-07-07 09:56:38 +02:00
committed by GitHub
parent 0c742dd022
commit 9b7000dbf1
2 changed files with 6 additions and 3 deletions

View File

@ -684,6 +684,9 @@ class TopicQuery
if sort_order
options[:order] = sort_order
options[:ascending] = !!sort_ascending ? 'true' : 'false'
else
options[:order] = 'default'
options[:ascending] = 'false'
end
end
end