You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dolphinscheduler.apache.org by ch...@apache.org on 2020/11/19 03:08:26 UTC

[incubator-dolphinscheduler] branch dev updated: [Fix-4054][Api] Fix The last week of the month for adding/editing timing, preview and save timing will report an error

This is an automated email from the ASF dual-hosted git repository.

chenxingchun pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-dolphinscheduler.git


The following commit(s) were added to refs/heads/dev by this push:
     new 9232c0e  [Fix-4054][Api] Fix The last week of the month for adding/editing timing, preview and save timing will report an error
     new f152cae  Merge pull request #4081 from iyeeku/dev
9232c0e is described below

commit 9232c0e46f32ac8025d9953aff366122b7096926
Author: yangquan <iy...@qq.com>
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) {