0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-09 20:02:54 +01:00

DEV: checkbox value should default to false

Dieser Commit ist enthalten in:
Faizaan Gagan 2021-04-29 11:02:51 +05:30
Ursprung f05d859007
Commit 8aafb257fd

Datei anzeigen

@ -57,6 +57,12 @@ export default {
];
FieldModel.reopen({
init() {
this._super(...arguments);
if (this.type === "checkbox") {
this.set("value", this.value || false);
}
},
check() {
if (this.customCheck) {
return this.customCheck();