summaryrefslogtreecommitdiffstats
path: root/src/components/Properties
diff options
context:
space:
mode:
authorGeorg Ehrke <developer@georgehrke.com>2018-11-15 21:38:29 +0100
committerGeorg Ehrke <developer@georgehrke.com>2018-11-15 21:38:29 +0100
commitbbbb09f4dfb3bf2ac70363250e7ec3146d69be8a (patch)
treef90454db603b81aebb8c0c98b8882d5ec299713d /src/components/Properties
parent01367cfad3b84fb4aa35d2ca9bf1b5c1975a7fd8 (diff)
window.firstDay is zero based, vue2-timepickers first of of week is not
Signed-off-by: Georg Ehrke <developer@georgehrke.com>
Diffstat (limited to 'src/components/Properties')
-rw-r--r--src/components/Properties/PropertyDateTime.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/Properties/PropertyDateTime.vue b/src/components/Properties/PropertyDateTime.vue
index 13e9038f..d445b08a 100644
--- a/src/components/Properties/PropertyDateTime.vue
+++ b/src/components/Properties/PropertyDateTime.vue
@@ -160,7 +160,7 @@ export default {
// locale and lang data
locale: 'en', // temporary value, see mounted
- firstDay: window.firstDay, // provided by nextcloud
+ firstDay: window.firstDay + 1, // provided by nextcloud
lang: {
days: window.dayNamesShort, // provided by nextcloud
months: window.monthNamesShort, // provided by nextcloud