Use prettyByteSize instead of prettyDiskSize

this prevents 'not available yet' string for 0 size files
This commit is contained in:
Girish Ramakrishnan
2020-07-17 14:24:58 -07:00
parent 4f4df7d9fe
commit c87ddd5116
+1 -1
View File
@@ -252,7 +252,7 @@
<i class="far fa-file fa-lg" ng-show="entry.isFile"></i>
</td>
<td class="hand elide-table-cell" ng-click="open(entry)">{{ entry.fileName }}</td>
<td class="hand elide-table-cell" ng-click="open(entry)">{{ entry.size | prettyDiskSize }}</td>
<td class="hand elide-table-cell" ng-click="open(entry)">{{ entry.size | prettyByteSize }}</td>
<td class="hand elide-table-cell" ng-click="open(entry)">{{ entry.uid | prettyOwner }}</td>
</tr>
</tbody>