mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-12-02 11:59:17 -05:00
7 lines
183 B
JavaScript
7 lines
183 B
JavaScript
import computed from 'ember-addons/ember-computed-decorators';
|
|
|
|
export default Ember.Component.extend({
|
|
@computed('field.value')
|
|
showStaffCount: staffCount => staffCount > 1
|
|
});
|
|
|