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:
Ursprung
f05d859007
Commit
8aafb257fd
1 geänderte Dateien mit 6 neuen und 0 gelöschten Zeilen
|
@ -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();
|
||||
|
|
Laden …
In neuem Issue referenzieren