From 26f50660f39dfec18d4d03343b49c5b8b423a1d5 Mon Sep 17 00:00:00 2001 From: calvin Date: Sat, 5 Mar 2022 14:40:26 +0800 Subject: [PATCH] [Fix-8624][UI-Next][V1.0.0-Alpha] Rectify the issue to display the timing form when clicking the timing button in the process definition page. (#8704) * fix this issue * fix this issue --- .../projects/workflow/definition/components/timing-modal.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx b/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx index 26aa5e7409..ac5999c510 100644 --- a/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx +++ b/dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx @@ -187,6 +187,8 @@ export default defineComponent({ watch( () => props.row, () => { + if (!props.row.crontab) return + timingState.timingForm.startEndTime = [ new Date(props.row.startTime), new Date(props.row.endTime)