UX: Always show topic progress on mobile

This commit is contained in:
Robin Ward 2017-06-30 16:19:19 -04:00
parent 0650c8dbab
commit 566cf31c66
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ export default Ember.Component.extend({
@computed('postStream.loaded', 'topic.currentPost', 'postStream.filteredPostsCount')
hideProgress(loaded, currentPost, filteredPostsCount) {
return (!loaded) || (!currentPost) || (filteredPostsCount < 2);
return (!loaded) || (!currentPost) || (!this.site.mobileView && filteredPostsCount < 2);
},
@computed('postStream.filteredPostsCount')