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:
-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 ?? ''
},