mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 06:30:15 +08:00
8 lines
234 B
JavaScript
8 lines
234 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,
|
|
});
|