Browse Source

[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
3.0.0/version-upgrade
calvin 3 years ago committed by GitHub
parent
commit
26f50660f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      dolphinscheduler-ui-next/src/views/projects/workflow/definition/components/timing-modal.tsx

2
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)

Loading…
Cancel
Save