mirror of
https://github.com/discourse/discourse.git
synced 2025-02-08 22:43:01 +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
|
||
|
});
|
||
|
|