[ACS-6817] Size and Modified by is not displayed after editing file/folder properties (#9367)

This commit is contained in:
DominikIwanek
2024-02-22 10:33:09 +01:00
committed by GitHub
parent e20f8536cb
commit 7e68ed9ceb
2 changed files with 2 additions and 2 deletions

View File

@@ -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);

View File

@@ -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];
}