10 lines
224 B
JavaScript
10 lines
224 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: 'span',
|
|
|
|
showGrantCount: function() {
|
|
return this.get('count') && this.get('count') > 1;
|
|
}.property('count'),
|
|
|
|
isIcon: Em.computed.match('badge.icon', /^fa-/)
|
|
});
|