From 0fa97de06e6d96985891231cf149e872f4e35b42 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 21 Feb 2021 22:01:58 +0100 Subject: [PATCH] web/stages: fix cancel URL --- .../stages/authenticator_static/AuthenticatorStaticStage.ts | 2 +- .../stages/authenticator_totp/AuthenticatorTOTPStage.ts | 2 +- web/src/elements/stages/consent/ConsentStage.ts | 2 +- web/src/elements/stages/password/PasswordStage.ts | 2 +- web/src/pages/generic/FlowExecutor.ts | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/web/src/elements/stages/authenticator_static/AuthenticatorStaticStage.ts b/web/src/elements/stages/authenticator_static/AuthenticatorStaticStage.ts index d22e3ae36..c03890cb6 100644 --- a/web/src/elements/stages/authenticator_static/AuthenticatorStaticStage.ts +++ b/web/src/elements/stages/authenticator_static/AuthenticatorStaticStage.ts @@ -49,7 +49,7 @@ export class AuthenticatorStaticStage extends BaseStage { ${this.challenge.pending_user}
- ${gettext("Not you?")} + ${gettext("Not you?")}
diff --git a/web/src/elements/stages/authenticator_totp/AuthenticatorTOTPStage.ts b/web/src/elements/stages/authenticator_totp/AuthenticatorTOTPStage.ts index d999dbfa9..22c92af8f 100644 --- a/web/src/elements/stages/authenticator_totp/AuthenticatorTOTPStage.ts +++ b/web/src/elements/stages/authenticator_totp/AuthenticatorTOTPStage.ts @@ -37,7 +37,7 @@ export class AuthenticatorTOTPStage extends BaseStage { ${this.challenge.pending_user}
- ${gettext("Not you?")} + ${gettext("Not you?")}
diff --git a/web/src/elements/stages/consent/ConsentStage.ts b/web/src/elements/stages/consent/ConsentStage.ts index ed77081ce..937e28d5f 100644 --- a/web/src/elements/stages/consent/ConsentStage.ts +++ b/web/src/elements/stages/consent/ConsentStage.ts @@ -44,7 +44,7 @@ export class ConsentStage extends BaseStage { ${this.challenge.pending_user}
- ${gettext("Not you?")} + ${gettext("Not you?")}
diff --git a/web/src/elements/stages/password/PasswordStage.ts b/web/src/elements/stages/password/PasswordStage.ts index b1efbd87a..bf645ed51 100644 --- a/web/src/elements/stages/password/PasswordStage.ts +++ b/web/src/elements/stages/password/PasswordStage.ts @@ -36,7 +36,7 @@ export class PasswordStage extends BaseStage { ${this.challenge.pending_user}
- ${gettext("Not you?")} + ${gettext("Not you?")}
diff --git a/web/src/pages/generic/FlowExecutor.ts b/web/src/pages/generic/FlowExecutor.ts index 0e833decb..7947c66c7 100644 --- a/web/src/pages/generic/FlowExecutor.ts +++ b/web/src/pages/generic/FlowExecutor.ts @@ -34,7 +34,7 @@ export class FlowExecutor extends LitElement { challenge?: Challenge; @property({type: Boolean}) - loading: boolean = false; + loading = false; static get styles(): CSSResult[] { return COMMON_STYLES.concat(css`