diff --git a/opensearch_dashboards.json b/opensearch_dashboards.json index 03fdcf1..cd33419 100644 --- a/opensearch_dashboards.json +++ b/opensearch_dashboards.json @@ -7,6 +7,9 @@ "requiredPlugins": [ "navigation" ], - "optionalPlugins": ["dataSource","dataSourceManagement"], + "optionalPlugins": [ + "dataSource", + "dataSourceManagement" + ], "supportedOSDataSourceVersions": ">=2.8.0" } \ No newline at end of file diff --git a/public/plugin_nav.tsx b/public/plugin_nav.tsx index 500567e..6a16c04 100644 --- a/public/plugin_nav.tsx +++ b/public/plugin_nav.tsx @@ -3,11 +3,11 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { i18n } from '@osd/i18n'; import { CoreSetup } from '../../../src/core/public'; import { SearchRelevancePluginSetup } from './types'; import { PLUGIN_ID } from '../common'; -import { DEFAULT_NAV_GROUPS, DEFAULT_APP_CATEGORIES, AppCategory } from '../../../src/core/public'; -import { i18n } from "@osd/i18n"; +import { DEFAULT_NAV_GROUPS, AppCategory } from '../../../src/core/public'; const searchRelevance_category: Record = { evaluateSearch: { @@ -19,11 +19,20 @@ const searchRelevance_category: Record) { core.chrome.navGroup.addNavLinksToGroup(DEFAULT_NAV_GROUPS.search, [ { id: PLUGIN_ID, category: searchRelevance_category.evaluateSearch,//change to Evaluate Search + title: titleForSearchRelevance, + showInAllNavGroup: true }, ]); } \ No newline at end of file diff --git a/release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md b/release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md new file mode 100644 index 0000000..2575d4c --- /dev/null +++ b/release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md @@ -0,0 +1,10 @@ +## Version 2.16.0.0 Release Notes + +Compatible with OpenSearch 2.16.0 + +### Features +* [Navigation] Register all plugins to NavGroups ([#406](https://github.com/opensearch-project/dashboards-search-relevance/pull/406)) ([#408](https://github.com/opensearch-project/dashboards-search-relevance/pull/408)) +* version decoupling support for MDS ([#407](https://github.com/opensearch-project/dashboards-search-relevance/pull/407)) ([#409](https://github.com/opensearch-project/dashboards-search-relevance/pull/409)) + +## New Contributors +@tackadam made their first contribution in ([#406](https://github.com/opensearch-project/dashboards-search-relevance/pull/406)) \ No newline at end of file