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