mirror of
https://github.com/discourse/discourse.git
synced 2024-11-25 04:19:05 +08:00
20 lines
455 B
JavaScript
20 lines
455 B
JavaScript
import discourseComputed from "discourse-common/utils/decorators";
|
|
import { isEmpty } from "@ember/utils";
|
|
import Component from "@ember/component";
|
|
|
|
export default Component.extend({
|
|
@discourseComputed("value")
|
|
enabled: {
|
|
get(value) {
|
|
if (isEmpty(value)) {
|
|
return false;
|
|
}
|
|
return value.toString() === "true";
|
|
},
|
|
set(value) {
|
|
this.set("value", value ? "true" : "false");
|
|
return value;
|
|
},
|
|
},
|
|
});
|