Skip to content

Commit ea7af92

Browse files
committed
Adjust ordering of Management category apps to make Ingest Manager higher (#71948)
1 parent da2d14b commit ea7af92

File tree

4 files changed

+4
-3
lines changed

4 files changed

+4
-3
lines changed

src/plugins/dev_tools/public/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export class DevToolsPlugin implements Plugin<DevToolsSetup, void> {
6161
}),
6262
updater$: this.appStateUpdater,
6363
euiIconType: 'devToolsApp',
64-
order: 9001,
64+
order: 9010,
6565
category: DEFAULT_APP_CATEGORIES.management,
6666
mount: async (params: AppMountParameters) => {
6767
const { element, history } = params;

src/plugins/management/public/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ export class ManagementPlugin implements Plugin<ManagementSetup, ManagementStart
6565
title: i18n.translate('management.stackManagement.title', {
6666
defaultMessage: 'Stack Management',
6767
}),
68-
order: 9003,
68+
order: 9040,
6969
euiIconType: 'managementApp',
7070
category: DEFAULT_APP_CATEGORIES.management,
7171
async mount(params: AppMountParameters) {

x-pack/plugins/ingest_manager/public/plugin.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ export class IngestManagerPlugin
7272
id: PLUGIN_ID,
7373
category: DEFAULT_APP_CATEGORIES.management,
7474
title: i18n.translate('xpack.ingestManager.appTitle', { defaultMessage: 'Ingest Manager' }),
75+
order: 9020,
7576
euiIconType: 'savedObjectsApp',
7677
async mount(params: AppMountParameters) {
7778
const [coreStart, startDeps] = (await core.getStartServices()) as [

x-pack/plugins/monitoring/public/plugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ export class MonitoringPlugin
7474
const app: App = {
7575
id,
7676
title,
77-
order: 9002,
77+
order: 9030,
7878
euiIconType: icon,
7979
category: DEFAULT_APP_CATEGORIES.management,
8080
mount: async (params: AppMountParameters) => {

0 commit comments

Comments
 (0)