From bd74e07ce11dc6f5765440cb05034d67302a2800 Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 23 Mar 2021 16:18:00 +0100 Subject: [PATCH] flows: move outside of flow executor Signed-off-by: Jens Langhammer --- authentik/flows/templates/flows/shell.html | 8 +------- web/src/flow.ts | 1 + web/src/flows/FlowExecutor.ts | 1 - web/src/interfaces/flow/index.html | 1 + 4 files changed, 3 insertions(+), 8 deletions(-) diff --git a/authentik/flows/templates/flows/shell.html b/authentik/flows/templates/flows/shell.html index 6f7b52720..0197da38d 100644 --- a/authentik/flows/templates/flows/shell.html +++ b/authentik/flows/templates/flows/shell.html @@ -3,16 +3,10 @@ {% load static %} {% block head %} -{{ block.super }} - {% endblock %} {% block body %} + {% endblock %} diff --git a/web/src/flow.ts b/web/src/flow.ts index 0c7d9baac..9fe22476c 100644 --- a/web/src/flow.ts +++ b/web/src/flow.ts @@ -1,3 +1,4 @@ import "construct-style-sheets-polyfill"; +import "./elements/messages/MessageContainer"; import "./flows/FlowExecutor"; diff --git a/web/src/flows/FlowExecutor.ts b/web/src/flows/FlowExecutor.ts index 11b28b5d2..bdec49c96 100644 --- a/web/src/flows/FlowExecutor.ts +++ b/web/src/flows/FlowExecutor.ts @@ -232,7 +232,6 @@ export class FlowExecutor extends LitElement implements StageHost { -