diff --git a/src/wizard-checkbox.ts b/src/wizard-checkbox.ts index 99df0b2479..ecb915a28a 100644 --- a/src/wizard-checkbox.ts +++ b/src/wizard-checkbox.ts @@ -69,7 +69,7 @@ export class WizardCheckbox extends LitElement { disabled = false; @state() get formfieldLabel(): string { - return this.helper ? `${this.label} (${this.helper})` : this.label; + return this.helper ? `${this.helper} (${this.label})` : this.label; } @query('mwc-switch') nullSwitch?: Switch;