@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.
@@ -4613,7 +4613,7 @@ class EsTableComponent {
4613
4613
  finalizeUserEdit(rowItem, item, columnIndex) {
4614
4614
  rowItem._editing = false;
4615
4615
  let old = this.DynamicRowColumnsDefinition.length > 0 ? rowItem.edits[item._hash].old_value : rowItem.old_value;
4616
- let niu = item[rowItem.PropertyName];
4616
+ let niu = this.DynamicRowColumnsDefinition.length > 0 ? item.properties[rowItem.PropertyName] : item[rowItem.PropertyName];
4617
4617
  let olddate = this.dateExts.getDateConvertion(old);
4618
4618
  let niudate = this.dateExts.getDateConvertion(niu);
4619
4619
  if ((olddate && niudate && olddate.isSame && olddate.isSame(niudate)) || old === niu)