From 277ca89a1f304c1aee6680cb6410833ea8aaaa3a Mon Sep 17 00:00:00 2001 From: Ronak SHAH Date: Wed, 21 Jun 2017 15:47:40 +0530 Subject: [PATCH] Updating deserialize function. Fixes #4696 --- lib/mixins/property-accessors.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/mixins/property-accessors.html b/lib/mixins/property-accessors.html index d0ea908ea0..f35040489d 100644 --- a/lib/mixins/property-accessors.html +++ b/lib/mixins/property-accessors.html @@ -344,6 +344,9 @@ break; case Date: + if(!isNaN(value)){ + value = Number(value); + } outValue = new Date(value); break;