mirror of
https://code.eliotberriot.com/funkwhale/funkwhale.git
synced 2025-10-05 23:42:12 +02:00
Fix #287: Display file size in human format during file upload
This commit is contained in:
parent
b6fc0051fa
commit
16718809f7
2 changed files with 2 additions and 1 deletions
|
@ -50,7 +50,7 @@
|
|||
<tbody>
|
||||
<tr v-for="(file, index) in files" :key="file.id">
|
||||
<td>{{ file.name }}</td>
|
||||
<td>{{ file.size }}</td>
|
||||
<td>{{ file.size | humanSize }}</td>
|
||||
<td>
|
||||
<span v-if="file.error" class="ui red label">
|
||||
{{ file.error }}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue