fix order for validation stage
Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
parent
00ea472fb9
commit
ac8145c249
|
@ -189,33 +189,6 @@ export class AuthenticatorValidateStageForm extends BaseStageForm<AuthenticatorV
|
||||||
</option>
|
</option>
|
||||||
</select>
|
</select>
|
||||||
</ak-form-element-horizontal>
|
</ak-form-element-horizontal>
|
||||||
<ak-form-element-horizontal
|
|
||||||
label=${msg("WebAuthn User verification")}
|
|
||||||
?required=${true}
|
|
||||||
name="webauthnUserVerification"
|
|
||||||
>
|
|
||||||
<ak-radio
|
|
||||||
.options=${[
|
|
||||||
{
|
|
||||||
label: msg("User verification must occur."),
|
|
||||||
value: UserVerificationEnum.Required,
|
|
||||||
default: true,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: msg(
|
|
||||||
"User verification is preferred if available, but not required.",
|
|
||||||
),
|
|
||||||
value: UserVerificationEnum.Preferred,
|
|
||||||
},
|
|
||||||
{
|
|
||||||
label: msg("User verification should not occur."),
|
|
||||||
value: UserVerificationEnum.Discouraged,
|
|
||||||
},
|
|
||||||
]}
|
|
||||||
.value=${this.instance?.webauthnUserVerification}
|
|
||||||
>
|
|
||||||
</ak-radio>
|
|
||||||
</ak-form-element-horizontal>
|
|
||||||
${this.showConfigurationStages
|
${this.showConfigurationStages
|
||||||
? html`
|
? html`
|
||||||
<ak-form-element-horizontal
|
<ak-form-element-horizontal
|
||||||
|
@ -247,9 +220,39 @@ export class AuthenticatorValidateStageForm extends BaseStageForm<AuthenticatorV
|
||||||
"When multiple stages are selected, the user can choose which one they want to enroll.",
|
"When multiple stages are selected, the user can choose which one they want to enroll.",
|
||||||
)}
|
)}
|
||||||
</p>
|
</p>
|
||||||
|
<p class="pf-c-form__helper-text">
|
||||||
|
${msg("Hold control/command to select multiple items.")}
|
||||||
|
</p>
|
||||||
</ak-form-element-horizontal>
|
</ak-form-element-horizontal>
|
||||||
`
|
`
|
||||||
: html``}
|
: html``}
|
||||||
|
<ak-form-element-horizontal
|
||||||
|
label=${msg("WebAuthn User verification")}
|
||||||
|
?required=${true}
|
||||||
|
name="webauthnUserVerification"
|
||||||
|
>
|
||||||
|
<ak-radio
|
||||||
|
.options=${[
|
||||||
|
{
|
||||||
|
label: msg("User verification must occur."),
|
||||||
|
value: UserVerificationEnum.Required,
|
||||||
|
default: true,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: msg(
|
||||||
|
"User verification is preferred if available, but not required.",
|
||||||
|
),
|
||||||
|
value: UserVerificationEnum.Preferred,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: msg("User verification should not occur."),
|
||||||
|
value: UserVerificationEnum.Discouraged,
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
.value=${this.instance?.webauthnUserVerification}
|
||||||
|
>
|
||||||
|
</ak-radio>
|
||||||
|
</ak-form-element-horizontal>
|
||||||
</div>
|
</div>
|
||||||
</ak-form-group>`;
|
</ak-form-group>`;
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue