mirror of
https://gitee.com/dolphinscheduler/DolphinScheduler.git
synced 2024-12-04 21:28:00 +08:00
[Fix][UI Next][V1.0.0-Beta] Fix bug where logo disappeared when format dag. (#9864)
This commit is contained in:
parent
e41de35e17
commit
52826194a6
@ -274,6 +274,15 @@ export default defineComponent({
|
||||
nodeVariables.showModalRef = false
|
||||
}
|
||||
|
||||
const layoutSubmit = () => {
|
||||
submit()
|
||||
|
||||
// Refresh task status in workflow instance
|
||||
if (props.instance) {
|
||||
refreshTaskStatus()
|
||||
}
|
||||
}
|
||||
|
||||
watch(
|
||||
() => props.definition,
|
||||
() => {
|
||||
@ -321,7 +330,7 @@ export default defineComponent({
|
||||
</div>
|
||||
<DagAutoLayoutModal
|
||||
visible={layoutVisible.value}
|
||||
submit={submit}
|
||||
submit={layoutSubmit}
|
||||
cancel={cancel}
|
||||
formValue={formValue}
|
||||
formRef={formRef}
|
||||
|
Loading…
Reference in New Issue
Block a user