From a2b180f175a729ae26390b998b5ef5e6140e6364 Mon Sep 17 00:00:00 2001 From: cagataycivici Date: Fri, 20 Dec 2019 18:33:00 +0300 Subject: [PATCH] Fixed #107 - Calendar clear button does not reset the input field --- src/components/calendar/Calendar.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 82ecb28b1e..1e18803d13 100644 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -957,6 +957,7 @@ export default { event.preventDefault(); }, onClearButtonClick(event) { + this.inputFieldValue = ''; this.updateModel(null); this.overlayVisible = false; this.$emit('clear-click', event);