size data (#416)

This commit is contained in:
Cilibiu Bogdan
2018-06-15 07:45:42 +01:00
committed by Denys Vuika
parent b06dcd4391
commit 51cd3744c5
3 changed files with 4 additions and 3 deletions
@@ -14,7 +14,7 @@
by <span> {{ user }} </span>
<span *ngIf="size">| {{ size }} </span>
<span *ngIf="size">| {{ 'APP.BROWSE.SEARCH.CUSTOM_ROW.SIZE' | translate }}: {{ size | adfFileSize }} </span>
</div>
<div class="line">{{ 'APP.BROWSE.SEARCH.CUSTOM_ROW.LOCATION' | translate }}: <app-location-link [context]="context"></app-location-link></div>
@@ -64,7 +64,7 @@ export class CustomDlRowComponent implements OnInit {
}
get size() {
return this.getValue('content.modifiedAt');
return this.getValue('content.sizeInBytes');
}
get user() {
+2 -1
View File
@@ -101,7 +101,8 @@
"FOUND_RESULTS": "{{ number }} results found",
"CUSTOM_ROW": {
"MODIFIED": "Modified",
"LOCATION": "Location"
"LOCATION": "Location",
"SIZE": "Size"
}
}
},