Browse Source

[Fix][UI Next] Fix the problem that the left menu of task group management is not displayed. (#8307)

3.0.0/version-upgrade
songjianet 3 years ago committed by GitHub
parent
commit
ebed364a45
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 12
      dolphinscheduler-ui-next/src/router/modules/resources.ts

12
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
}
}
]
}

Loading…
Cancel
Save