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