From bbf8dfbe4fec15e94d72d6f473049456fbe07b46 Mon Sep 17 00:00:00 2001 From: gulderov Date: Sat, 1 Jul 2023 03:33:06 +0300 Subject: [PATCH] Update main menu to display 'Dashboards' for consistency (#4453) * Update main menu to display 'Dashboards' for consistency. Fixes #4296 This resolves the inconsistency highlighted in issue #4296 (https://github.com/opensearch-project/OpenSearch-Dashboards/issues/4296). The decision to make this change was made in issue #68 (https://github.com/opensearch-project/ux/issues/68)." * Update OpenSearch Dashboard to OpenSearch Dashboards for consistence * CHANGELOG.md update --------- Signed-off-by: Danila Gulderov --- CHANGELOG.md | 1 + COMMUNICATIONS.md | 2 +- src/plugins/dashboard/public/plugin.tsx | 2 +- 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c7b1de68723c..313321b9c288 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -36,6 +36,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) - [Chore] Update deprecated url methods (url.parse(), url.format()) ([#2910](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/2910)) - Cleanup unused url ([#3847](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/3847)) - [Saved Objects Management] Fix relationships header overflow ([#4070](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/4070)) +- Update main menu to display 'Dashboards' for consistency ([#4453](https://github.com/opensearch-project/OpenSearch-Dashboards/pull/4453)) ### 🚞 Infrastructure diff --git a/COMMUNICATIONS.md b/COMMUNICATIONS.md index c1dbfc114ce7..00e2da1a58c9 100644 --- a/COMMUNICATIONS.md +++ b/COMMUNICATIONS.md @@ -36,7 +36,7 @@ While we'll always prioritize asynchronous communication, sometimes a community 1. Review a proposal or technical design for a new feature in OpenSearch Dashboards or an OpenSearch Dashboards plugin 2. Learn more about how to build and extend OpenSearch Dashboards - which APIs, plugins, resources, and services are available to speed development -3. Discuss OpenSearch Dashboard roadmap and technical initiatives +3. Discuss OpenSearch Dashboards roadmap and technical initiatives Signing up isn't required to attend - all OpenSearch Dashboards contributors or interested developers are welcome as participants. diff --git a/src/plugins/dashboard/public/plugin.tsx b/src/plugins/dashboard/public/plugin.tsx index 87f934925899..01ed9f0696b8 100644 --- a/src/plugins/dashboard/public/plugin.tsx +++ b/src/plugins/dashboard/public/plugin.tsx @@ -360,7 +360,7 @@ export class DashboardPlugin const app: App = { id: DashboardConstants.DASHBOARDS_ID, - title: 'Dashboard', + title: 'Dashboards', order: 2500, euiIconType: 'inputOutput', defaultPath: `#${DashboardConstants.LANDING_PAGE_PATH}`,