We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a64f83e + 6641138 commit 5e917f1Copy full SHA for 5e917f1
themes/Backend/ExtJs/backend/base/component/element/date.js
@@ -41,7 +41,7 @@ Ext.define('Shopware.apps.Base.view.element.Date', {
41
if(!value) {
42
return null;
43
} else if (typeof(value) == 'string') {
44
- return new Date(value);
+ return (value === "0000-00-00") ? null : new Date(value);
45
} else {
46
return value;
47
}
0 commit comments