Skip to content

Commit

Permalink
Merge develop to master for Kibana side nav position change (#62)
Browse files Browse the repository at this point in the history
Merge develop to master for Kibana side nav position change
  • Loading branch information
joshuali925 authored Nov 27, 2020
2 parents c236d39 + 690825d commit 410c2e3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions public/plugin.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
*/

import { i18n } from '@kbn/i18n';
import { AppMountParameters, CoreSetup, CoreStart, Plugin, DEFAULT_APP_CATEGORIES } from '../../../src/core/public';
import { AppMountParameters, CoreSetup, CoreStart, Plugin } from '../../../src/core/public';
import {
KibanaNotebooksPluginSetup,
KibanaNotebooksPluginStart,
Expand All @@ -29,8 +29,13 @@ export class KibanaNotebooksPlugin
core.application.register({
id: PLUGIN_ID,
title: PLUGIN_NAME,
category: DEFAULT_APP_CATEGORIES.kibana,
order: 8040,
category: {
id: 'odfe',
label: 'Open Distro for Elasticsearch',
euiIconType: 'logoKibana',
order: 2000,
},
order: 3000,
async mount(params: AppMountParameters) {
// Load application bundle
const { renderApp } = await import('./application');
Expand Down

0 comments on commit 410c2e3

Please sign in to comment.