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

github.com/nextcloud/tasks.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRaimund Schlüßler <raimund.schluessler@mailbox.org>2019-11-21 21:42:20 +0300
committerRaimund Schlüßler <raimund.schluessler@mailbox.org>2019-11-21 21:42:20 +0300
commita3e6a47a0f1d42845fb41c7d2678bce27873ee7a (patch)
treecb537a0fb7ff0b02b97b3facb478bc7a277b6882 /src/components
parent38c1c5db4efbe7f613df290d788d83d4c2d3c16f (diff)
Respect all-day setting for today collection
Signed-off-by: Raimund Schlüßler <raimund.schluessler@mailbox.org>
Diffstat (limited to 'src/components')
-rw-r--r--src/components/TheCollections/General.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/TheCollections/General.vue b/src/components/TheCollections/General.vue
index 1d0062b8..c2f4ac5e 100644
--- a/src/components/TheCollections/General.vue
+++ b/src/components/TheCollections/General.vue
@@ -154,6 +154,7 @@ export default {
}
if (this.$route.params.collectionId === 'today') {
task.due = moment().startOf('day').format('YYYY-MM-DDTHH:mm:ss')
+ task.allDay = this.$store.state.settings.settings.allDay
}
if (this.$route.params.collectionId === 'current') {
task.start = moment().format('YYYY-MM-DDTHH:mm:ss')