FIX: set showFooter to true on group topic list (#8795)
If using {{#if showFooter}} in a template, showFooter is never set to true on a group's g/groupname/activity/topics route (it's correctly set on other group routes like group-activity-posts)
This commit is contained in:
parent
e19459185a
commit
d24d47b2ee
|
@ -1,6 +1,8 @@
|
||||||
import DiscourseRoute from "discourse/routes/discourse";
|
import DiscourseRoute from "discourse/routes/discourse";
|
||||||
|
|
||||||
export default DiscourseRoute.extend({
|
export default DiscourseRoute.extend({
|
||||||
|
showFooter: true,
|
||||||
|
|
||||||
titleToken() {
|
titleToken() {
|
||||||
return I18n.t(`groups.topics`);
|
return I18n.t(`groups.topics`);
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue