mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
[ACS-6817] Size and Modified by is not displayed after editing file/folder properties (#9367)
This commit is contained in:
@@ -108,7 +108,7 @@ export class ShareDataRow implements DataRow {
|
||||
}
|
||||
|
||||
getValue(key: string): any {
|
||||
if (this.cache[key] !== undefined) {
|
||||
if (this.cache[key]) {
|
||||
return this.cache[key];
|
||||
}
|
||||
return ObjectUtils.getValue(this.obj.entry, key);
|
||||
|
@@ -101,7 +101,7 @@ export class ShareDataTableAdapter implements DataTableAdapter {
|
||||
}
|
||||
const dataRow = row as ShareDataRow;
|
||||
const value: any = row.getValue(col.key);
|
||||
if (dataRow.cache[col.key] !== undefined) {
|
||||
if (dataRow.cache[col.key]) {
|
||||
return dataRow.cache[col.key];
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user