Update to Angular v17 syntax

This commit is contained in:
Geomitron
2023-12-25 10:43:21 -06:00
parent 199374b2e2
commit f931a1b221
8 changed files with 146 additions and 194 deletions

View File

@@ -1,4 +1,6 @@
<div *ngIf="settingsLoaded" class="flex flex-col h-screen">
<app-toolbar></app-toolbar>
<router-outlet></router-outlet>
</div>
@if (settingsLoaded) {
<div class="flex flex-col h-screen">
<app-toolbar></app-toolbar>
<router-outlet></router-outlet>
</div>
}