mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACA-3474] [Info Drawer] Error on save (#5791)
This commit is contained in:
@@ -93,7 +93,7 @@ export class DataTableCellComponent implements OnInit, OnDestroy {
|
||||
if (this.row) {
|
||||
if (this.row['node'].entry.id === node.id) {
|
||||
this.row['node'].entry = node;
|
||||
this.row['cache'][this.column.key] = this.column.key.split('.').reduce((source, key) => source[key], node);
|
||||
this.row['cache'][this.column.key] = this.column.key.split('.').reduce((source, key) => source ? source[key] : '', node);
|
||||
this.updateValue();
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user