Skip to content

Commit c9e57a6

Browse files
author
Michail Yasonik
authored
fixing nav visualize nav order (#82381)
1 parent a26d311 commit c9e57a6

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/plugins/dashboard/public/plugin.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ export class DashboardPlugin
282282
const app: App = {
283283
id: DashboardConstants.DASHBOARDS_ID,
284284
title: 'Dashboard',
285-
order: -1001,
285+
order: 2500,
286286
euiIconType: 'logoKibana',
287287
defaultPath: `#${DashboardConstants.LANDING_PAGE_PATH}`,
288288
updater$: this.appStateUpdater,

src/plugins/discover/public/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ export class DiscoverPlugin
241241
id: 'discover',
242242
title: 'Discover',
243243
updater$: this.appStateUpdater.asObservable(),
244-
order: -1004,
244+
order: 1000,
245245
euiIconType: 'logoKibana',
246246
defaultPath: '#/',
247247
category: DEFAULT_APP_CATEGORIES.kibana,

src/plugins/visualize/public/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ export class VisualizePlugin
140140
core.application.register({
141141
id: 'visualize',
142142
title: 'Visualize',
143-
order: -1002,
143+
order: 8000,
144144
euiIconType: 'logoKibana',
145145
defaultPath: '#/',
146146
category: DEFAULT_APP_CATEGORIES.kibana,

0 commit comments

Comments
 (0)