fixing merge conflicts

This commit is contained in:
authentik Default Admin 2026-03-04 18:19:47 -08:00
commit bceee7ecf1
3 changed files with 95 additions and 56 deletions

View file

@ -4,18 +4,8 @@ import "./page-home.js";
import "./page-items.js";
class AppRoot extends LitElement {
static properties = {
user: { type: Object, state: true },
route: { type: String, state: true },
items: { type: Array, state: true }
};
constructor() {
super();
this.user = null;
this.route = 'home';
this.items = [];
}
#user = new StoreController(this, store, s => s.user);
#route = new StoreController(this, store, s => s.route);
static styles = css`
:host {