discourse/app/assets/javascripts/wizard/components/staff-count.js.es6

7 lines
182 B
Plaintext
Raw Normal View History

2018-06-15 11:03:24 -04:00
import computed from "ember-addons/ember-computed-decorators";
export default Ember.Component.extend({
2018-07-30 11:56:48 -04:00
@computed("field.value")
showStaffCount: staffCount => staffCount > 1
});