Skip to content

Commit 663e82a

Browse files
committed
Reorder main menu
1 parent 36959f8 commit 663e82a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

src/app/app-routing.module.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ import { UsageComponent } from './component/usage/usage.component';
1010
import { TeamsComponent } from './component/teams/teams.component';
1111

1212
const routes: Routes = [
13-
{ path: '', component: MatrixComponent },
13+
{ path: '', component: CircularHeatmapComponent },
1414
{ path: 'circular-heatmap', component: CircularHeatmapComponent },
15+
{ path: 'matrix', component: MatrixComponent },
1516
{ path: 'activity-description', component: ActivityDescriptionComponent },
1617
{ path: 'mapping', component: MappingComponent },
1718
{ path: 'usage', component: UsageComponent },

src/app/component/sidenav-buttons/sidenav-buttons.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,26 +7,26 @@ import { Component } from '@angular/core';
77
})
88
export class SidenavButtonsComponent {
99
Options: string[] = [
10+
'Overview',
1011
'Matrix',
11-
'Implementation Levels',
1212
'Mappings',
1313
'Usage',
1414
'Teams',
1515
'About Us',
1616
'DSOMM User Day 2024',
1717
];
1818
Icons: string[] = [
19-
'table_chart',
2019
'pie_chart',
20+
'table_chart',
2121
'timeline',
2222
'description',
2323
'people',
2424
'info',
2525
'school',
2626
];
2727
Routing: string[] = [
28-
'/',
2928
'/circular-heatmap',
29+
'/matrix',
3030
'/mapping',
3131
'/usage',
3232
'/teams',

0 commit comments

Comments
 (0)