mirror of
https://github.com/zitadel/zitadel.git
synced 2025-10-16 10:01:19 +00:00

# Which Problems Are Solved - Correctly load Avatar on first load # How the Problems Are Solved - The Avatar issue was mostly due to how we resolved the current user, I changed this behaviour # Additional Changes - Removed V2 create human code till seperate page is finished - Remove Console Use V2 API feature flag from features page (till new page is added) # Additional Context - Partially fixes #9382 - This will get implemented next week https://github.com/zitadel/zitadel/issues/9382#issuecomment-2681347477
28 lines
753 B
HTML
28 lines
753 B
HTML
<div class="main-container">
|
|
<ng-container *ngIf="authService.user | async as user">
|
|
<cnsl-header
|
|
[org]="org"
|
|
[user]="user"
|
|
[isDarkTheme]="componentCssClass === 'dark-theme'"
|
|
(changedActiveOrg)="changedOrg($event)"
|
|
></cnsl-header>
|
|
|
|
<cnsl-nav
|
|
id="mainnav"
|
|
class="nav"
|
|
[ngClass]="{ shadow: yoffset > 60 }"
|
|
[org]="org"
|
|
[user]="user"
|
|
[isDarkTheme]="componentCssClass === 'dark-theme'"
|
|
></cnsl-nav>
|
|
</ng-container>
|
|
|
|
<div class="router-container" [@routeAnimations]="prepareRoute(outlet)">
|
|
<div class="outlet">
|
|
<router-outlet class="outlet" #outlet="outlet"></router-outlet>
|
|
</div>
|
|
</div>
|
|
<span class="fill-space"></span>
|
|
<cnsl-footer></cnsl-footer>
|
|
</div>
|