UX: Alwasy skip headers on topic lists on mobile.
Fixes topic lists filtered by tag on mobile.
This commit is contained in:
parent
d6fa248093
commit
d491d817a6
|
@ -18,6 +18,10 @@ export default Ember.Component.extend({
|
|||
return !!this.get('changeSort');
|
||||
}.property(),
|
||||
|
||||
skipHeader: function() {
|
||||
return Discourse.Mobile.mobileView;
|
||||
}.property(),
|
||||
|
||||
showLikes: function(){
|
||||
return this.get('order') === "likes";
|
||||
}.property('order'),
|
||||
|
|
|
@ -14,7 +14,6 @@
|
|||
|
||||
{{#if hasTopics}}
|
||||
{{topic-list
|
||||
skipHeader=true
|
||||
showPosters=true
|
||||
currentUser=currentUser
|
||||
hideCategory=hideCategory
|
||||
|
|
Loading…
Reference in New Issue