FEATURE: show create new topic link on mobile

This commit is contained in:
Arpit Jalan 2018-01-11 10:38:52 +05:30
parent fc05164667
commit 2509bef2c0
1 changed files with 1 additions and 1 deletions

View File

@ -169,7 +169,7 @@ export default Ember.Controller.extend({
@computed('expanded', 'model.grouped_search_result.can_create_topic')
canCreateTopic(expanded, userCanCreateTopic) {
return this.currentUser && userCanCreateTopic && !this.site.mobileView && !expanded;
return this.currentUser && userCanCreateTopic && !expanded;
},
@computed('expanded')