web/flows: fix FlowExecutor not updating when challenge changes from outside

Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
Jens Langhammer 2021-08-29 13:49:57 +02:00
parent b1ed2154ac
commit 08e8cf850a
2 changed files with 2 additions and 1 deletions

View File

@ -77,6 +77,7 @@ export class FlowExecutor extends LitElement implements StageHost {
document.title = tenant.brandingTitle || TITLE_DEFAULT;
}
});
this.requestUpdate();
}
get challenge(): ChallengeTypes | undefined {

View File

@ -25,7 +25,7 @@ export class SourceListPage extends TablePage<Source> {
return t`Sources`;
}
pageDescription(): string | undefined {
return t`Sources of identities, which can either be synced into authentik's database, like LDAP, or can be used by users to authenticate and enroll themselves, like OAuth and social logins`;
return t`Sources of identities, which can either be synced into authentik's database, or can be used by users to authenticate and enroll themselves.`;
}
pageIcon(): string {
return "pf-icon pf-icon-middleware";