diff --git a/web/src/elements/wizard/FormWizardPage.ts b/web/src/elements/wizard/FormWizardPage.ts index ef3544178..a694f0610 100644 --- a/web/src/elements/wizard/FormWizardPage.ts +++ b/web/src/elements/wizard/FormWizardPage.ts @@ -6,8 +6,15 @@ import { customElement } from "lit/decorators.js"; import { WizardPage } from "./WizardPage"; +/** + * This Wizard page is used for proxy forms with the older-style + * wizards + */ @customElement("ak-wizard-page-form") export class FormWizardPage extends WizardPage { + activeCallback = async () => { + this.host.isValid = true; + }; nextCallback = async () => { const form = this.querySelector