FIX: Tag topic lists should pass on noSubcategories when building the top menu

This commit is contained in:
Daniel Waterworth 2019-11-14 10:40:02 +00:00
parent a1cf0b88a8
commit 126b9bd16d

View File

@ -99,11 +99,12 @@ export default Controller.extend(BulkTopicSelection, {
"q"
],
@discourseComputed("category", "tag.id", "filterMode")
navItems(category, tagId, filterMode) {
@discourseComputed("category", "tag.id", "filterMode", "noSubcategories")
navItems(category, tagId, filterMode, noSubcategories) {
return NavItem.buildList(category, {
tagId,
filterMode
filterMode,
noSubcategories
});
},