This commit is contained in:
Konnor Rogers
2025-10-04 00:42:26 -04:00
parent ee59634b0f
commit 8b179c9faf

View File

@@ -80,7 +80,7 @@ export default class WaCheckbox extends WebAwesomeFormAssociatedElement {
/** The value of the checkbox, submitted as a name/value pair with form data. */
get value(): string | null {
return this.checked ? (this._value || 'on') : null;
return this.checked ? this._value || 'on' : null;
}
@property({ reflect: true })