mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 23:48:45 +08:00
536f88b95b
This reverts commit 1f899bec21
.
6 lines
180 B
JavaScript
6 lines
180 B
JavaScript
import computed from "ember-addons/ember-computed-decorators";
|
|
|
|
export default Ember.Component.extend({
|
|
@computed("field.value") showStaffCount: staffCount => staffCount > 1
|
|
});
|