This is an automated email from the ASF dual-hosted git repository.
lidongdai pushed a commit to branch 1.3.4-prepare
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git
The following commit(s) were added to refs/heads/1.3.4-prepare by this push:
new 494f30f [Fix-4054][Api] Fix The last week of the month for
adding/editing timing, preview and save timing will report an error
new 35c8f96 Merge pull request #4145 from lgcareer/1.3.4-prepare-fix-4054
494f30f is described below
commit 494f30f54375e2037696b7c1c308f872fbacbc28
Author: yangquan <[email protected]>
AuthorDate: Wed Nov 18 19:19:45 2020 +0800
[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 1efc022..4e65b1c 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) {