From 1dddcbf46a05fa4cba5853a48b36d662624eec78 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Tue, 13 Aug 2024 16:49:51 +0000 Subject: [PATCH] [navigation]feat: change parent item name (#234) * feat: change parent item name Signed-off-by: SuZhou-Joe * feat: update title of entries Signed-off-by: SuZhou-Joe * feat: update link Signed-off-by: SuZhou-Joe * feat: add description Signed-off-by: SuZhou-Joe --------- Signed-off-by: SuZhou-Joe (cherry picked from commit 562d3a1697660fe8a1081b4c6ebbbedd92687008) Signed-off-by: github-actions[bot] --- README.md | 2 +- public/plugin.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 60476eae..aa034880 100644 --- a/README.md +++ b/README.md @@ -62,4 +62,4 @@ This code is licensed under the Apache 2.0 License. ## Copyright -Copyright OpenSearch Contributors. See [NOTICE](../NOTICE.txt) for details. +Copyright OpenSearch Contributors. See [NOTICE](./NOTICE) for details. diff --git a/public/plugin.ts b/public/plugin.ts index a1012a7b..f28c6710 100644 --- a/public/plugin.ts +++ b/public/plugin.ts @@ -48,6 +48,9 @@ export class notificationsDashboardsPlugin title: this.title, category: core.chrome?.navGroup?.getNavGroupEnabled() ? undefined : DEFAULT_APP_CATEGORIES.management, order: 9060, + description: i18n.translate('dashboards-notifications.leftNav.notifications.description', { + defaultMessage: 'Configure and organize notification channels.' + }), workspaceAvailability: WorkspaceAvailability.outsideWorkspace, async mount(params: AppMountParameters) { // Load application bundle @@ -76,6 +79,7 @@ export class notificationsDashboardsPlugin core.chrome.navGroup.addNavLinksToGroup(DEFAULT_NAV_GROUPS.settingsAndSetup, [ { id: PLUGIN_NAME, + title: 'Notification channels' } ])