From 637028735dbf8a78efa63cf8358d2bead7bb5c6e Mon Sep 17 00:00:00 2001 From: labbomb <739955946@qq.com> Date: Tue, 26 Apr 2022 14:27:04 +0800 Subject: [PATCH] [Bug]Fix groupId initialization value problem (#9775) * The utils configuration files are centrally managed under common * Fix groupId initialization value problem --- .../src/views/resource/task-group/queue/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dolphinscheduler-ui-next/src/views/resource/task-group/queue/index.tsx b/dolphinscheduler-ui-next/src/views/resource/task-group/queue/index.tsx index 5470694a2b..67716753cf 100644 --- a/dolphinscheduler-ui-next/src/views/resource/task-group/queue/index.tsx +++ b/dolphinscheduler-ui-next/src/views/resource/task-group/queue/index.tsx @@ -48,7 +48,7 @@ const taskGroupQueue = defineComponent({ const idRef = ref(Number(router.currentRoute.value.params.id)) const searchParamRef = reactive({ - groupId: 0, + groupId: ref(), processName: '', instanceName: '', pageSize: 10,