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

songjian 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 637028735d [Bug]Fix groupId initialization value problem (#9775)
637028735d is described below

commit 637028735dbf8a78efa63cf8358d2bead7bb5c6e
Author: labbomb <[email protected]>
AuthorDate: Tue Apr 26 14:27:04 2022 +0800

    [Bug]Fix groupId initialization value problem (#9775)
    
    * The utils configuration files are centrally managed under common
    
    * Fix groupId initialization value problem
---
 dolphinscheduler-ui-next/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<number| null>(),
       processName: '',
       instanceName: '',
       pageSize: 10,

Reply via email to