Merge pull request #3173 from riking/patch-user

FIX: 'all' filter never de-highlighting
This commit is contained in:
Sam 2015-02-06 10:09:21 +11:00
commit 178efdf882

View file

@ -7,12 +7,17 @@ export default Ember.Component.extend(StringBuffer, {
rerenderTriggers: ['content.count', 'count'],
noGlyph: Em.computed.empty('icon'),
isIndexStream: function() {
return !this.get('content');
}.property('content.count'),
active: function() {
if (this.get('isIndexStream')) {
return !this.get('userActionType');
}
var content = this.get('content');
if (content) {
return parseInt(this.get('userActionType'), 10) === parseInt(Em.get(content, 'action_type'), 10);
} else {
return this.get('indexStream');
}
}.property('userActionType', 'indexStream'),