mirror of
https://github.com/discourse/discourse.git
synced 2024-11-23 19:01:52 +08:00
regression, navigating to category leaves phantom columns
This commit is contained in:
parent
222964b27b
commit
9c250444ff
|
@ -3,6 +3,10 @@ export default Ember.Component.extend({
|
|||
tagName: 'table',
|
||||
classNames: ['topic-list'],
|
||||
|
||||
_observeHideCategory: function(){
|
||||
this.addObserver('hideCategory', this.rerender);
|
||||
}.on('init'),
|
||||
|
||||
toggleInTitle: function(){
|
||||
return !this.get('bulkSelectEnabled') && this.get('canBulkSelect');
|
||||
}.property('bulkSelectEnabled'),
|
||||
|
@ -13,11 +17,11 @@ export default Ember.Component.extend({
|
|||
|
||||
showLikes: function(){
|
||||
return this.get('order') === "likes";
|
||||
}.property(),
|
||||
}.property('order'),
|
||||
|
||||
showOpLikes: function(){
|
||||
return this.get('order') === "op_likes";
|
||||
}.property(),
|
||||
}.property('order'),
|
||||
|
||||
click: function(e){
|
||||
var self = this;
|
||||
|
|
Loading…
Reference in New Issue
Block a user