From c1fffaa19b82f0998338e442383138d0bd0587f2 Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Tue, 1 Oct 2019 16:12:20 +0300 Subject: [PATCH] Fixed #47 - Calendar.vue: when the value is updated, the component partially updates itself --- src/components/calendar/Calendar.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 9c7bf7f28..a59de31da 100644 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -341,8 +341,9 @@ export default { timePickerTimer: null, isKeydown: false, watch: { - value() { + value(newValue) { this.updateCurrentMetaData(); + this.updateInputFieldValue(newValue); } }, methods: {