Skip to content
Snippets Groups Projects
Verified Commit 16718809 authored by Eliot Berriot's avatar Eliot Berriot
Browse files

Fix #287: Display file size in human format during file upload

parent b6fc0051
No related branches found
No related tags found
No related merge requests found
Display file size in human format during file upload (#287)
......@@ -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 }}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment