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:
Kris 2020-01-29 12:12:38 -05:00 committed by GitHub
parent e19459185a
commit d24d47b2ee
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -1,6 +1,8 @@
import DiscourseRoute from "discourse/routes/discourse";
export default DiscourseRoute.extend({
showFooter: true,
titleToken() {
return I18n.t(`groups.topics`);
},