mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 19:03:13 +08:00
7 lines
182 B
JavaScript
7 lines
182 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
@computed("field.value")
|
|
showStaffCount: staffCount => staffCount > 1
|
|
});
|