This is an automated email from the ASF dual-hosted git repository.
dockerzhang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/inlong.git
The following commit(s) were added to refs/heads/master by this push:
new a97585eabf [INLONG-10421][Dashboard] Move template management to
system management (#10422)
a97585eabf is described below
commit a97585eabf1075647d396c6086530d8302501b39
Author: wohainilaodou <[email protected]>
AuthorDate: Fri Jun 14 18:32:22 2024 +0800
[INLONG-10421][Dashboard] Move template management to system management
(#10422)
---
inlong-dashboard/src/configs/menus/conf.tsx | 17 ++++++-----------
1 file changed, 6 insertions(+), 11 deletions(-)
diff --git a/inlong-dashboard/src/configs/menus/conf.tsx
b/inlong-dashboard/src/configs/menus/conf.tsx
index a4e80f26bd..f2bbdf2f47 100644
--- a/inlong-dashboard/src/configs/menus/conf.tsx
+++ b/inlong-dashboard/src/configs/menus/conf.tsx
@@ -33,18 +33,9 @@ import type { MenuItemType } from '.';
const conf: MenuItemType[] = [
{
- name: i18n.t('configs.menus.GroupsManagement'),
+ path: '/group',
+ name: i18n.t('configs.menus.Groups'),
icon: <ApiOutlined />,
- children: [
- {
- path: '/group',
- name: i18n.t('configs.menus.Groups'),
- },
- {
- path: '/dataTemplate',
- name: i18n.t('configs.menus.Groups.Template'),
- },
- ],
},
{
path: '/sync',
@@ -99,6 +90,10 @@ const conf: MenuItemType[] = [
isAdmin: true,
name: i18n.t('configs.menus.ProcessManagement'),
},
+ {
+ path: '/dataTemplate',
+ name: i18n.t('configs.menus.Groups.Template'),
+ },
],
},
{