diff --git a/pages/add-stroke/components/end-date-selector.vue b/pages/add-stroke/components/end-date-selector.vue index af231e7..a25fe71 100644 --- a/pages/add-stroke/components/end-date-selector.vue +++ b/pages/add-stroke/components/end-date-selector.vue @@ -6,9 +6,9 @@ @@ -26,7 +26,7 @@ data() { return { - valueEnd: this.$moment(new Date()).format('YYYY-MM-DD hh:mm:ss') + valueEnd: this.$moment(new Date()).format('YYYY-MM-DD hh:mm') }; }, diff --git a/pages/add-stroke/components/start-date-selector.vue b/pages/add-stroke/components/start-date-selector.vue index 0099ad2..761c58c 100644 --- a/pages/add-stroke/components/start-date-selector.vue +++ b/pages/add-stroke/components/start-date-selector.vue @@ -6,9 +6,9 @@ @@ -26,7 +26,7 @@ data() { return { - valueStart: this.$moment(new Date()).format('YYYY-MM-DD hh:mm:ss') + valueStart: this.$moment(new Date()).format('YYYY-MM-DD hh:mm') }; },