This is an automated email from the ASF dual-hosted git repository. dockerzhang pushed a commit to branch branch-1.7 in repository https://gitbox.apache.org/repos/asf/inlong.git
commit 8f92f389eab5f593bcae50679bd173cec53df421 Author: Lizhen <88174078+bluew...@users.noreply.github.com> AuthorDate: Mon May 15 10:16:53 2023 +0800 [INLONG-8022][Dashboard] Node management title text optimization (#8023) Co-authored-by: Charles Zhang <dockerzh...@apache.org> --- CHANGES.md | 1 + inlong-dashboard/src/configs/menus/conf.tsx | 10 +++++----- inlong-dashboard/src/i18n.ts | 4 ++-- 3 files changed, 8 insertions(+), 7 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 89507625e..5e350802d 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -191,6 +191,7 @@ | [INLONG-7971](https://github.com/apache/inlong/issues/7971) | [Feature][Dashboard] Support batch import fields by Excel | | [INLONG-8001](https://github.com/apache/inlong/issues/8001) | [Feature][Dashboard] Support postgreSQL node management | | [INLONG-8011](https://github.com/apache/inlong/issues/8011) | [Improve][Dashboard] Cluster name and node name can be modified when editing | +| [INLONG-8011](https://github.com/apache/inlong/issues/8022) | [Improve][Dashboard] Node management title text optimization | ### Other | ISSUE | Summary | diff --git a/inlong-dashboard/src/configs/menus/conf.tsx b/inlong-dashboard/src/configs/menus/conf.tsx index e9af6f3b6..cc2bf71fb 100644 --- a/inlong-dashboard/src/configs/menus/conf.tsx +++ b/inlong-dashboard/src/configs/menus/conf.tsx @@ -40,6 +40,11 @@ const conf: MenuItemType[] = [ name: i18n.t('configs.menus.Subscribe'), icon: <ShopOutlined />, }, + { + path: '/node', + name: i18n.t('configs.menus.Nodes'), + icon: <DatabaseOutlined />, + }, { name: i18n.t('configs.menus.Clusters'), icon: <DeploymentUnitOutlined />, @@ -54,11 +59,6 @@ const conf: MenuItemType[] = [ }, ], }, - { - path: '/node', - name: i18n.t('configs.menus.Nodes'), - icon: <DatabaseOutlined />, - }, { path: '/process', name: i18n.t('configs.menus.Process'), diff --git a/inlong-dashboard/src/i18n.ts b/inlong-dashboard/src/i18n.ts index f2632f23d..cc6c0131b 100644 --- a/inlong-dashboard/src/i18n.ts +++ b/inlong-dashboard/src/i18n.ts @@ -33,7 +33,7 @@ const resources = { 'configs.menus.SystemManagement': 'System', 'configs.menus.UserManagement': 'User Management', 'configs.menus.ProcessManagement': 'Process Management', - 'configs.menus.Nodes': 'Nodes', + 'configs.menus.Nodes': 'DataNodes', }, }, cn: { @@ -46,7 +46,7 @@ const resources = { 'configs.menus.SystemManagement': '系统管理', 'configs.menus.UserManagement': '用户管理', 'configs.menus.ProcessManagement': '流程管理', - 'configs.menus.Nodes': '节点管理', + 'configs.menus.Nodes': '数据节点', }, }, };