prettier, you're annoying

This commit is contained in:
Konnor Rogers
2025-10-04 00:47:13 -04:00
parent 8b179c9faf
commit a7a877a4c0

View File

@@ -80,7 +80,8 @@ 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;
const val = this._value || 'on'
return this.checked ? val : null;
}
@property({ reflect: true })