0
0
Fork 1
Spiegel von https://github.com/paviliondev/discourse-custom-wizard.git synchronisiert 2024-11-21 17:00:29 +01:00

FIX: checkbox submission values exception

Dieser Commit ist enthalten in:
Angus McLeod 2024-10-01 09:36:07 +02:00
Ursprung 051184a4e1
Commit 5e079b42f5

Datei anzeigen

@ -48,11 +48,10 @@ export default Component.extend({
checkboxValue(value) { checkboxValue(value) {
const isCheckbox = this.get("isCheckbox"); const isCheckbox = this.get("isCheckbox");
if (isCheckbox) { if (isCheckbox) {
if (value.value.includes("true")) { return (
return true; value.value === true ||
} else if (value.value.includes("false")) { (Array.isArray(value.value) && value.value.includes("true"))
return false; );
}
} }
}, },