@esfaenza/es-table 11.2.83-beta8 → 11.2.83-beta9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -5144,7 +5144,7 @@
5144
5144
  EsTableComponent.prototype.finalizeUserEdit = function (rowItem, item, columnIndex) {
5145
5145
  rowItem._editing = false;
5146
5146
  var old = this.DynamicRowColumnsDefinition.length > 0 ? rowItem.edits[item._hash].old_value : rowItem.old_value;
5147
- var niu = item[rowItem.PropertyName];
5147
+ var niu = this.DynamicRowColumnsDefinition.length > 0 ? item.properties[rowItem.PropertyName] : item[rowItem.PropertyName];
5148
5148
  var olddate = this.dateExts.getDateConvertion(old);
5149
5149
  var niudate = this.dateExts.getDateConvertion(niu);
5150
5150
  if ((olddate && niudate && olddate.isSame && olddate.isSame(niudate)) || old === niu)