Browse Source

[Bug]Fix log request errors (#9791)

3.0.0/version-upgrade
labbomb 2 years ago committed by GitHub
parent
commit
52b188b347
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 13
      dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx

13
dolphinscheduler-ui-next/src/views/projects/workflow/components/dag/index.tsx

@ -284,6 +284,19 @@ export default defineComponent({
}
)
watch(
() => nodeVariables.showModalRef,
() => {
if (!nodeVariables.showModalRef) {
nodeVariables.row = {}
nodeVariables.logRef = ''
nodeVariables.logLoadingRef = true
nodeVariables.skipLineNum = 0
nodeVariables.limit = 1000
}
}
)
onBeforeUnmount(() => clearInterval(statusTimerRef.value))
return () => (

Loading…
Cancel
Save