diff --git a/src/app/components/custom-dl-row/custom-dl-row.component.html b/src/app/components/custom-dl-row/custom-dl-row.component.html
index 7384e3a68..aeaeb0c4b 100644
--- a/src/app/components/custom-dl-row/custom-dl-row.component.html
+++ b/src/app/components/custom-dl-row/custom-dl-row.component.html
@@ -14,7 +14,7 @@
by {{ user }}
- | {{ size }}
+ | {{ 'APP.BROWSE.SEARCH.CUSTOM_ROW.SIZE' | translate }}: {{ size | adfFileSize }}
{{ 'APP.BROWSE.SEARCH.CUSTOM_ROW.LOCATION' | translate }}:
diff --git a/src/app/components/custom-dl-row/custom-dl-row.component.ts b/src/app/components/custom-dl-row/custom-dl-row.component.ts
index 6753b4a65..0d18534d5 100644
--- a/src/app/components/custom-dl-row/custom-dl-row.component.ts
+++ b/src/app/components/custom-dl-row/custom-dl-row.component.ts
@@ -64,7 +64,7 @@ export class CustomDlRowComponent implements OnInit {
}
get size() {
- return this.getValue('content.modifiedAt');
+ return this.getValue('content.sizeInBytes');
}
get user() {
diff --git a/src/assets/i18n/en.json b/src/assets/i18n/en.json
index 7e39669eb..32b256490 100644
--- a/src/assets/i18n/en.json
+++ b/src/assets/i18n/en.json
@@ -101,7 +101,8 @@
"FOUND_RESULTS": "{{ number }} results found",
"CUSTOM_ROW": {
"MODIFIED": "Modified",
- "LOCATION": "Location"
+ "LOCATION": "Location",
+ "SIZE": "Size"
}
}
},