web: re-enable fallback to siteshell for now

This commit is contained in:
Jens Langhammer 2021-02-25 20:55:22 +01:00
parent 4e2c686db1
commit c275992f7b
1 changed files with 3 additions and 3 deletions

View File

@ -71,9 +71,9 @@ export class RouterOutlet extends LitElement {
console.debug(`authentik/router: route "${activeUrl}" not defined`);
const route = new Route(
RegExp(""),
html`<div class="pf-c-page__main">
<ak-router-404 url=${activeUrl}></ak-router-404>
</div>`
html`<ak-site-shell class="pf-c-page__main" url=${activeUrl}>
<div slot="body"></div>
</ak-site-shell>`
);
matchedRoute = new RouteMatch(route);
matchedRoute.arguments = route.url.exec(activeUrl)?.groups || {};