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

github.com/nextcloud/mail.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristoph Wurst <ChristophWurst@users.noreply.github.com>2022-09-13 15:01:00 +0300
committerGitHub <noreply@github.com>2022-09-13 15:01:00 +0300
commit244860c78dd24d14afe529ed78f62553a3caee47 (patch)
treed58ff539af10f933b8fd8006502f86ec0e4e7870
parente53469f1481fd064db6511edb52e4fab71d42427 (diff)
parentcb2e94d17b7532a3b60901065fa419533a1156b0 (diff)
Merge pull request #7273 from nextcloud/fix/noid/enable-last-day-not-parsed
Fix enable last day checkbox not being parsed correctly
-rw-r--r--src/components/OutOfOfficeForm.vue1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/components/OutOfOfficeForm.vue b/src/components/OutOfOfficeForm.vue
index 3647fa07e..86a58d841 100644
--- a/src/components/OutOfOfficeForm.vue
+++ b/src/components/OutOfOfficeForm.vue
@@ -200,6 +200,7 @@ export default {
this.enabled = !!state.enabled ?? false
this.firstDay = state.start ?? new Date()
this.lastDay = state.end ?? null
+ this.enableLastDay = !!this.lastDay
this.subject = state.subject ?? ''
this.message = toHtml(plain(state.message)).value ?? ''
},