diff --git a/app/assets/javascripts/discourse/app/components/d-toggle-switch.gjs b/app/assets/javascripts/discourse/app/components/d-toggle-switch.gjs index 261fdad9b86..542df895981 100644 --- a/app/assets/javascripts/discourse/app/components/d-toggle-switch.gjs +++ b/app/assets/javascripts/discourse/app/components/d-toggle-switch.gjs @@ -3,18 +3,23 @@ import icon from "discourse-common/helpers/d-icon"; import I18n from "discourse-i18n"; export default class DToggleSwitch extends Component { + get computedLabel() { + if (this.args.label) { + return I18n.t(this.args.label); + } + return this.args.translatedLabel; + } + - - get computedLabel() { - if (this.args.label) { - return I18n.t(this.args.label); - } - return this.args.translatedLabel; - } - - get checked() { - return this.args.state ? "true" : "false"; - } }