Skip to content

Commit 13bc92a

Browse files
fix(AsideNavigation): swap icons (#465)
Release-As: 4.10.0
1 parent 8c4ecc4 commit 13bc92a

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

src/containers/AsideNavigation/AsideNavigation.tsx

+6-6
Original file line numberDiff line numberDiff line change
@@ -139,23 +139,23 @@ export const useGetLeftNavigationItems = () => {
139139

140140
const items: MenuItem[] = [
141141
{
142-
id: TENANT_PAGES_IDS.diagnostics,
143-
title: 'Diagnostics',
142+
id: TENANT_PAGES_IDS.query,
143+
title: 'Query',
144144
icon: squareChartBarIcon,
145145
iconSize: 20,
146146
location: getTenantPath({
147147
...queryParams,
148-
[TENANT_PAGE]: TENANT_PAGES_IDS.diagnostics,
148+
[TENANT_PAGE]: TENANT_PAGES_IDS.query,
149149
}),
150150
},
151151
{
152-
id: TENANT_PAGES_IDS.query,
153-
title: 'Query',
152+
id: TENANT_PAGES_IDS.diagnostics,
153+
title: 'Diagnostics',
154154
icon: pulseIcon,
155155
iconSize: 20,
156156
location: getTenantPath({
157157
...queryParams,
158-
[TENANT_PAGE]: TENANT_PAGES_IDS.query,
158+
[TENANT_PAGE]: TENANT_PAGES_IDS.diagnostics,
159159
}),
160160
},
161161
];

0 commit comments

Comments
 (0)