8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
export default Ember.Component.extend({
|
|
tagName: 'span',
|
|
|
|
showGrantCount: function() {
|
|
return this.get('count') && this.get('count') > 1;
|
|
}.property('count')
|
|
});
|