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/03/22 08:05:52 UTC

[dolphinscheduler] branch dev updated: [Fix][UI Next][V1.0.0-Alpha] Fix the worker page name. (#9086)

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 117963f  [Fix][UI Next][V1.0.0-Alpha] Fix the worker page name. (#9086)
117963f is described below

commit 117963f7c806a1b18b0133a2930a941b64a23a14
Author: songjianet <17...@qq.com>
AuthorDate: Tue Mar 22 16:05:42 2022 +0800

    [Fix][UI Next][V1.0.0-Alpha] Fix the worker page name. (#9086)
---
 dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.tsx | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.tsx b/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.tsx
index 7de5c39..b17ae1c 100644
--- a/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.tsx
+++ b/dolphinscheduler-ui-next/src/views/monitor/servers/worker/index.tsx
@@ -27,8 +27,8 @@ import type { Ref } from 'vue'
 import type { RowData } from 'naive-ui/es/data-table/src/interface'
 import type { WorkerNode } from '@/service/modules/monitor/types'
 
-const master = defineComponent({
-  name: 'master',
+const worker = defineComponent({
+  name: 'worker',
   setup() {
     const showModalRef = ref(false)
     const { t } = useI18n()
@@ -149,4 +149,4 @@ const master = defineComponent({
   }
 })
 
-export default master
+export default worker