From bd7e762c3815aa818b3aab75f3f0037e0e1be1cf Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Fri, 20 Sep 2024 19:29:43 +0800 Subject: [PATCH] Fix category order and description in data administration landing page (#369) (#373) * Fix category order and description in data administration landing page Signed-off-by: Lin Wang * Update release notes Signed-off-by: Lin Wang --------- Signed-off-by: Lin Wang (cherry picked from commit ffac668ac0ede7edf0b6dd0e25172e649a20a814) Co-authored-by: Lin Wang --- public/plugin.ts | 4 ++++ ...opensearch-ml-commons-dashboards.release-notes-2.17.0.0.md | 1 + 2 files changed, 5 insertions(+) diff --git a/public/plugin.ts b/public/plugin.ts index c5bdd231..b0543223 100644 --- a/public/plugin.ts +++ b/public/plugin.ts @@ -30,6 +30,9 @@ export class MlCommonsPluginPlugin core.application.register({ id: PLUGIN_ID, title: PLUGIN_NAME, + description: i18n.translate('MLCommonsDashboards.application.aiModels.description', { + defaultMessage: 'Review the status of running AI models.', + }), category: { id: 'opensearch', label: 'OpenSearch Plugins', @@ -66,6 +69,7 @@ export class MlCommonsPluginPlugin label: i18n.translate('MLCommonsDashboards.Category.MachineLearning.label', { defaultMessage: 'Machine learning', }), + order: 9999, }, }, ]); diff --git a/release-notes/opensearch-ml-commons-dashboards.release-notes-2.17.0.0.md b/release-notes/opensearch-ml-commons-dashboards.release-notes-2.17.0.0.md index a8be1d4b..239fd963 100644 --- a/release-notes/opensearch-ml-commons-dashboards.release-notes-2.17.0.0.md +++ b/release-notes/opensearch-ml-commons-dashboards.release-notes-2.17.0.0.md @@ -11,6 +11,7 @@ Compatible with OpenSearch 2.17.0 ### Bug Fixes * Fix connector router response 500 ([#358](https://github.com/opensearch-project/ml-commons-dashboards/pull/358)) +* Fix category order and description in data administration landing page ([#369](https://github.com/opensearch-project/ml-commons-dashboards/pull/369)) ### Maintenance * Increment version to 2.17.0.0 ([#353](https://github.com/opensearch-project/ml-commons-dashboards/pull/353))