From 2a3f96b183d76e405f6d652d77db130e543ee1c4 Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 08:16:16 +0800 Subject: [PATCH] [navigation]feat: change parent item name (#234) (#235) * feat: change parent item name * feat: update title of entries * feat: update link * feat: add description --------- (cherry picked from commit 562d3a1697660fe8a1081b4c6ebbbedd92687008) Signed-off-by: SuZhou-Joe Signed-off-by: github-actions[bot] Co-authored-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' } ])