Spiegel von
https://github.com/paviliondev/discourse-custom-wizard.git
synchronisiert 2024-11-12 21:22: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({
|
FieldModel.reopen({
|
||||||
|
init() {
|
||||||
|
this._super(...arguments);
|
||||||
|
if (this.type === "checkbox") {
|
||||||
|
this.set("value", this.value || false);
|
||||||
|
}
|
||||||
|
},
|
||||||
check() {
|
check() {
|
||||||
if (this.customCheck) {
|
if (this.customCheck) {
|
||||||
return this.customCheck();
|
return this.customCheck();
|
||||||
|
|
Laden …
In neuem Issue referenzieren