From 494f30f54375e2037696b7c1c308f872fbacbc28 Mon Sep 17 00:00:00 2001 From: yangquan Date: Wed, 18 Nov 2020 19:19:45 +0800 Subject: [PATCH] [Fix-4054][Api] Fix The last week of the month for adding/editing timing, preview and save timing will report an error --- .../src/js/module/components/crontab/source/_times/day.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dolphinscheduler-ui/src/js/module/components/crontab/source/_times/day.vue b/dolphinscheduler-ui/src/js/module/components/crontab/source/_times/day.vue index 1efc0224ad..4e65b1cc4b 100755 --- a/dolphinscheduler-ui/src/js/module/components/crontab/source/_times/day.vue +++ b/dolphinscheduler-ui/src/js/module/components/crontab/source/_times/day.vue @@ -352,8 +352,8 @@ }, monthLastWeeksVal (val) { if (this.radioDay === 'monthLastWeeks') { - this.weekValue = `?` - this.dayValue = val + this.weekValue = val + this.dayValue = `?` } }, WkmonthNumWeeksWeekVal (val) {