web/flow: showing of authentik logo in flow executor
closes #1646 Signed-off-by: Jens Langhammer <jens.langhammer@beryju.org>
This commit is contained in:
parent
ca682c3ee4
commit
bb8e0c6f59
|
@ -29,7 +29,6 @@ import { configureSentry } from "../api/Sentry";
|
||||||
import { WebsocketClient } from "../common/ws";
|
import { WebsocketClient } from "../common/ws";
|
||||||
import { EVENT_FLOW_ADVANCE, TITLE_DEFAULT } from "../constants";
|
import { EVENT_FLOW_ADVANCE, TITLE_DEFAULT } from "../constants";
|
||||||
import "../elements/LoadingOverlay";
|
import "../elements/LoadingOverlay";
|
||||||
import { DefaultTenant } from "../elements/sidebar/SidebarBrand";
|
|
||||||
import { first } from "../utils";
|
import { first } from "../utils";
|
||||||
import "./FlowInspector";
|
import "./FlowInspector";
|
||||||
import "./access_denied/FlowAccessDenied";
|
import "./access_denied/FlowAccessDenied";
|
||||||
|
@ -385,11 +384,7 @@ export class FlowExecutor extends LitElement implements StageHost {
|
||||||
<header class="pf-c-login__header">
|
<header class="pf-c-login__header">
|
||||||
<div class="pf-c-brand ak-brand">
|
<div class="pf-c-brand ak-brand">
|
||||||
<img
|
<img
|
||||||
src="${first(
|
src="${first(this.tenant?.brandingLogo, "")}"
|
||||||
this.tenant?.brandingLogo,
|
|
||||||
DefaultTenant.brandingLogo,
|
|
||||||
)}"
|
|
||||||
alt="authentik icon"
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</header>
|
</header>
|
||||||
|
|
Reference in New Issue