diff --git a/app/code/Magento/Ui/view/base/web/js/grid/columns/date.js b/app/code/Magento/Ui/view/base/web/js/grid/columns/date.js index 81c0cc1ccdbb7..b1ab7da596103 100644 --- a/app/code/Magento/Ui/view/base/web/js/grid/columns/date.js +++ b/app/code/Magento/Ui/view/base/web/js/grid/columns/date.js @@ -37,8 +37,14 @@ define([ * @returns {String} Formatted date. */ getLabel: function (value, format) { - var date = moment(this._super()); + var superValue = this._super(), + date; + if (superValue === undefined) { + return ''; + } + + date = moment(superValue); date = date.isValid() && value[this.index] ? date.format(format || this.dateFormat) : '';