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:
parent
b1ed2154ac
commit
08e8cf850a
|
@ -77,6 +77,7 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
document.title = tenant.brandingTitle || TITLE_DEFAULT;
|
document.title = tenant.brandingTitle || TITLE_DEFAULT;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
this.requestUpdate();
|
||||||
}
|
}
|
||||||
|
|
||||||
get challenge(): ChallengeTypes | undefined {
|
get challenge(): ChallengeTypes | undefined {
|
||||||
|
|
|
@ -25,7 +25,7 @@ export class SourceListPage extends TablePage<Source> {
|
||||||
return t`Sources`;
|
return t`Sources`;
|
||||||
}
|
}
|
||||||
pageDescription(): string | undefined {
|
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 {
|
pageIcon(): string {
|
||||||
return "pf-icon pf-icon-middleware";
|
return "pf-icon pf-icon-middleware";
|
||||||
|
|
Reference in New Issue