Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

[#noissue] Change side-menu order #9639

Merged
merged 1 commit into from
Jan 16, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -130,14 +130,6 @@ export class SideNavigationBarContainerComponent implements OnInit, OnDestroy {
iconClass: 'fas fa-chart-line',
onClick: () => this.onClickInspector(),
},
{
id: 'infrastructure',
title: 'Infrastructure',
path: '/metric',
iconClass: 'fas fa-server',
showItem: this.showMetric,
onClick: () => this.onClickMetric(),
},
{
id: 'url-stat',
title: 'URL Statistic',
Expand All @@ -146,6 +138,14 @@ export class SideNavigationBarContainerComponent implements OnInit, OnDestroy {
showItem: this.showUrlStat,
onClick: () => this.onClickUrlStat(),
},
{
id: 'infrastructure',
title: 'Infrastructure',
path: '/metric',
iconClass: 'fas fa-server',
showItem: this.showMetric,
onClick: () => this.onClickMetric(),
}
],
bottomItems: [
{
Expand Down