This commit is contained in:
Konnor Rogers
2025-10-04 00:47:22 -04:00
parent a7a877a4c0
commit 53ded0c1ac

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 {
const val = this._value || 'on'
const val = this._value || 'on';
return this.checked ? val : null;
}