mirror of
https://github.com/discourse/discourse.git
synced 2024-11-29 00:35:31 +08:00
48193767bf
Automatically generated by `eslint --fix` to satisfy the updated configuration
19 lines
413 B
JavaScript
19 lines
413 B
JavaScript
import Component from "@ember/component";
|
|
import { computed } from "@ember/object";
|
|
import { isEmpty } from "@ember/utils";
|
|
|
|
export default class Bool extends Component {
|
|
@computed("value")
|
|
get enabled() {
|
|
if (isEmpty(this.value)) {
|
|
return false;
|
|
}
|
|
return this.value.toString() === "true";
|
|
}
|
|
|
|
set enabled(value) {
|
|
this.set("value", value ? "true" : "false");
|
|
return value;
|
|
}
|
|
}
|