FIX: Bug when sorting by category column, navigating to home
This commit is contained in:
parent
d3b268cd2c
commit
ac72b0bcf6
|
@ -79,7 +79,9 @@ export default function(filter, params) {
|
|||
category: model,
|
||||
period: periods.findBy('id', periodId),
|
||||
selected: [],
|
||||
noSubcategories: params && !!params.no_subcategories
|
||||
noSubcategories: params && !!params.no_subcategories,
|
||||
order: model.get('params.order'),
|
||||
ascending: model.get('params.ascending'),
|
||||
});
|
||||
|
||||
this.controllerFor('search').set('searchContext', model.get('searchContext'));
|
||||
|
|
|
@ -45,6 +45,7 @@ export default function(filter, extras) {
|
|||
return 'queryParams.' + v;
|
||||
})));
|
||||
|
||||
|
||||
var periods = this.controllerFor('discovery').get('periods'),
|
||||
periodId = model.get('for_period') || (filter.indexOf('/') > 0 ? filter.split('/')[1] : '');
|
||||
|
||||
|
@ -52,7 +53,9 @@ export default function(filter, extras) {
|
|||
model: model,
|
||||
category: null,
|
||||
period: periods.findBy('id', periodId),
|
||||
selected: []
|
||||
selected: [],
|
||||
order: model.get('params.order'),
|
||||
ascending: model.get('params.ascending'),
|
||||
});
|
||||
|
||||
this.openTopicDraft(model);
|
||||
|
|
Loading…
Reference in New Issue