You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ki...@apache.org on 2022/02/02 11:00:06 UTC

[dolphinscheduler] branch dev updated: fix udf resource manage router (#8268)

This is an automated email from the ASF dual-hosted git repository.

kirs 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 972fb90  fix udf resource manage router (#8268)
972fb90 is described below

commit 972fb90dafbdffdd09c8d23f9a4dbd6a14dec692
Author: Devosend <de...@gmail.com>
AuthorDate: Wed Feb 2 18:59:54 2022 +0800

    fix udf resource manage router (#8268)
---
 dolphinscheduler-ui-next/src/router/modules/resources.ts | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/dolphinscheduler-ui-next/src/router/modules/resources.ts b/dolphinscheduler-ui-next/src/router/modules/resources.ts
index 0f4cf99..2adb6ed 100644
--- a/dolphinscheduler-ui-next/src/router/modules/resources.ts
+++ b/dolphinscheduler-ui-next/src/router/modules/resources.ts
@@ -86,7 +86,7 @@ export default {
     {
       path: '/resource/resource-manage',
       name: 'resource-manage',
-      component: components['resource'],
+      component: components['resource-udf-resource'],
       meta: {
         title: '资源管理',
         showSide: true
@@ -95,7 +95,7 @@ export default {
     {
       path: '/resource/resource-manage/:id',
       name: 'resource-sub-manage',
-      component: components['resource'],
+      component: components['resource-udf-resource'],
       meta: {
         title: '资源管理',
         showSide: true
@@ -106,7 +106,8 @@ export default {
       name: 'function-manage',
       component: components['resource-udf-function'],
       meta: {
-        title: '函数管理'
+        title: '函数管理',
+        showSide: true
       }
     },
     {