From bd1aac9b5ef0a09bd20fc060c56390bd97d22d96 Mon Sep 17 00:00:00 2001 From: mertsincan Date: Thu, 26 Aug 2021 13:50:16 +0300 Subject: [PATCH] Fixed #1392 - Datatable date filter throws uncaught error when invalid date string is entered --- src/components/calendar/Calendar.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/calendar/Calendar.vue b/src/components/calendar/Calendar.vue index 34d6d5cc7..0b9b3929f 100755 --- a/src/components/calendar/Calendar.vue +++ b/src/components/calendar/Calendar.vue @@ -1936,7 +1936,7 @@ export default { } } catch(err) { - this.updateModel(event.target.value); + this.updateModel(null); } }, onFocus() {