fix: fixed dashboard links

This commit is contained in:
2025-01-28 09:21:49 +01:00
parent a9ee6cd229
commit 4c84667c0d
2 changed files with 3 additions and 2 deletions

View File

@ -15,9 +15,10 @@ export const routes: Routes = [
children: [
{ path: 'scan-table', component: ScanTableComponent },
{ path: 'deployment-admin', component: DeploymentAdminComponent },
{ path: 'overview-grid', component: OverviewGridComponent },
],
},
{ path: 'overview', component: OverviewComponent },
{ path: 'overview-grid', component: OverviewGridComponent },
{ path: '**', redirectTo: 'login' },
];

View File

@ -41,7 +41,7 @@
<button
mat-button
class="menu-item"
[routerLink]="['/dashboard/scan-table']"
[routerLink]="['/dashboard/overview-grid']"
>
<span class="menu-text">Control</span>
</button>