This is an automated email from the ASF dual-hosted git repository.
zhongjiajie pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/dolphinscheduler.git
The following commit(s) were added to refs/heads/dev by this push:
new ebed364 [Fix][UI Next] Fix the problem that the left menu of task
group management is not displayed. (#8307)
ebed364 is described below
commit ebed364a455d917fbb742e7fbe75938a45f134da
Author: songjianet <[email protected]>
AuthorDate: Tue Feb 8 16:12:04 2022 +0800
[Fix][UI Next] Fix the problem that the left menu of task group management
is not displayed. (#8307)
---
dolphinscheduler-ui-next/src/router/modules/resources.ts | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/dolphinscheduler-ui-next/src/router/modules/resources.ts
b/dolphinscheduler-ui-next/src/router/modules/resources.ts
index 2adb6ed..e88cde5 100644
--- a/dolphinscheduler-ui-next/src/router/modules/resources.ts
+++ b/dolphinscheduler-ui-next/src/router/modules/resources.ts
@@ -113,12 +113,20 @@ export default {
{
path: '/resource/task-group-option',
name: 'task-group-option',
- component: components['resource-task-group-option']
+ component: components['resource-task-group-option'],
+ meta: {
+ title: '任务组配置',
+ showSide: true
+ }
},
{
path: '/resource/task-group-queue',
name: 'task-group-queue',
- component: components['resource-task-group-queue']
+ component: components['resource-task-group-queue'],
+ meta: {
+ title: '任务组队列',
+ showSide: true
+ }
}
]
}