Преглед изворни кода

[Bug]Fix groupId initialization value problem (#9775)

* The utils configuration files are centrally managed under common

* Fix groupId initialization value problem
labbomb пре 3 година
родитељ
комит
637028735d

+ 1 - 1
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,