web/admin: fix wizards with radio selects not working correctly after use (#4933)

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L 2023-03-13 23:42:52 +01:00 committed by GitHub
parent 0a9482b28a
commit 2d55d3c743
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with 6 additions and 6 deletions

View File

@ -36,7 +36,7 @@ export class InitialServiceConnectionWizardPage extends WizardPage {
?.querySelectorAll<HTMLInputElement>("input[type=radio]") ?.querySelectorAll<HTMLInputElement>("input[type=radio]")
.forEach((radio) => { .forEach((radio) => {
if (radio.checked) { if (radio.checked) {
this.host.isValid = true; radio.dispatchEvent(new CustomEvent("change"));
} }
}); });
}; };

View File

@ -42,7 +42,7 @@ export class InitialPolicyWizardPage extends WizardPage {
?.querySelectorAll<HTMLInputElement>("input[type=radio]") ?.querySelectorAll<HTMLInputElement>("input[type=radio]")
.forEach((radio) => { .forEach((radio) => {
if (radio.checked) { if (radio.checked) {
this.host.isValid = true; radio.dispatchEvent(new CustomEvent("change"));
} }
}); });
}; };

View File

@ -39,7 +39,7 @@ export class InitialPropertyMappingWizardPage extends WizardPage {
?.querySelectorAll<HTMLInputElement>("input[type=radio]") ?.querySelectorAll<HTMLInputElement>("input[type=radio]")
.forEach((radio) => { .forEach((radio) => {
if (radio.checked) { if (radio.checked) {
this.host.isValid = true; radio.dispatchEvent(new CustomEvent("change"));
} }
}); });
}; };

View File

@ -41,7 +41,7 @@ export class InitialProviderWizardPage extends WizardPage {
?.querySelectorAll<HTMLInputElement>("input[type=radio]") ?.querySelectorAll<HTMLInputElement>("input[type=radio]")
.forEach((radio) => { .forEach((radio) => {
if (radio.checked) { if (radio.checked) {
this.host.isValid = true; radio.dispatchEvent(new CustomEvent("change"));
} }
}); });
}; };

View File

@ -38,7 +38,7 @@ export class InitialSourceWizardPage extends WizardPage {
?.querySelectorAll<HTMLInputElement>("input[type=radio]") ?.querySelectorAll<HTMLInputElement>("input[type=radio]")
.forEach((radio) => { .forEach((radio) => {
if (radio.checked) { if (radio.checked) {
this.host.isValid = true; radio.dispatchEvent(new CustomEvent("change"));
} }
}); });
}; };

View File

@ -55,7 +55,7 @@ export class InitialStageWizardPage extends WizardPage {
?.querySelectorAll<HTMLInputElement>("input[type=radio]") ?.querySelectorAll<HTMLInputElement>("input[type=radio]")
.forEach((radio) => { .forEach((radio) => {
if (radio.checked) { if (radio.checked) {
this.host.isValid = true; radio.dispatchEvent(new CustomEvent("change"));
} }
}); });
}; };