mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 05:02:24 +08:00
fcb4e5a1a1
Co-authored-by: David Taylor <david@taylorhq.com>
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,
|
|
});
|