Skip to content
This repository was archived by the owner on Aug 2, 2022. It is now read-only.

Side bar change #216

Merged
merged 2 commits into from
Nov 26, 2020
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
10 changes: 7 additions & 3 deletions public/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
* permissions and limitations under the License.
*/

import { DEFAULT_APP_CATEGORIES } from '../../../src/core/public';
import { PLUGIN_NAME } from '../utils/constants';

export class AlertingPlugin {
Expand All @@ -26,8 +25,13 @@ export class AlertingPlugin {
id: PLUGIN_NAME,
title: 'Alerting',
description: 'Kibana Alerting Plugin',
category: DEFAULT_APP_CATEGORIES.kibana,
order: 8020,
category: {
id: 'odfe',
label: 'Open Distro for Elasticsearch',
euiIconType: 'logoKibana',
order: 2000,
},
order: 4000,
mount: async (params) => {
const { renderApp } = await import('./app');
const [coreStart] = await core.getStartServices();
Expand Down