mirror of
https://github.com/discourse/discourse.git
synced 2024-11-24 20:01:11 +08:00
8 lines
231 B
JavaScript
8 lines
231 B
JavaScript
import Component from "@ember/component";
|
|
import discourseComputed from "discourse-common/utils/decorators";
|
|
|
|
export default Component.extend({
|
|
@discourseComputed("field.value")
|
|
showStaffCount: staffCount => staffCount > 1
|
|
});
|