Browse Source

fix bug where project overview page display no data (#10720)

3.1.0-release
Devosend 2 years ago committed by GitHub
parent
commit
48d0e7f389
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      dolphinscheduler-ui/src/views/projects/overview/index.tsx

5
dolphinscheduler-ui/src/views/projects/overview/index.tsx

@ -43,8 +43,9 @@ const workflowMonitor = defineComponent({
}
const initData = () => {
taskStateRef.value = getTaskState(dateRef.value)
processStateRef.value = getProcessState(dateRef.value)
taskStateRef.value = getTaskState(dateRef.value) || taskStateRef.value
processStateRef.value =
getProcessState(dateRef.value) || processStateRef.value
}
onMounted(() => {

Loading…
Cancel
Save