Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/polls.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/js
diff options
context:
space:
mode:
authordartcafe <github@dartcafe.de>2021-07-01 23:57:49 +0300
committerdartcafe <github@dartcafe.de>2021-07-01 23:57:49 +0300
commit97a47a05e696aa75f65446baf82a985457a913d0 (patch)
tree561a8f316ec93a8cf2541feee771adb0999c61a8 /src/js
parentc47a046356aaf19a2af670a644edd0ce62c27578 (diff)
Init picked date with null instead of 0 #1707
Signed-off-by: dartcafe <github@dartcafe.de>
Diffstat (limited to 'src/js')
-rw-r--r--src/js/components/Options/OptionsDateAdd.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/js/components/Options/OptionsDateAdd.vue b/src/js/components/Options/OptionsDateAdd.vue
index 064964b5..8d3ab1ac 100644
--- a/src/js/components/Options/OptionsDateAdd.vue
+++ b/src/js/components/Options/OptionsDateAdd.vue
@@ -98,7 +98,7 @@ export default {
keepRange: true,
preservedTimeFrom: moment(),
preservedTimeTo: moment(),
- lastPickedDate: moment(0),
+ lastPickedDate: moment(null),
timeValues: moment(),
added: false,
}