1
0
Fork 0
mirror of https://github.com/VueTorrent/VueTorrent.git synced 2025-05-09 00:32:21 +03:00
This commit is contained in:
Daan Wijns 2021-01-30 13:26:06 +01:00 committed by GitHub
parent 5b9aa79d74
commit 34ef51c69b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
14 changed files with 93 additions and 42 deletions
src/components/Modals/TorrentDetailModal/Tabs

View file

@ -183,7 +183,7 @@
Download Limit
</td>
<td>
{{ torrent.dl_limit | getDataValue }} {{ torrent.dl_limit | getDataUnit }}/s
{{ torrent.dl_limit | getDataValue }} {{ torrent.dl_limit | getDataUnit }}<span v-if="torrent.dl_limit !== -1"> /s </span>
</td>
</tr>
<tr>
@ -191,7 +191,15 @@
Upload Limit
</td>
<td>
{{ torrent.up_limit | getDataValue }} {{ torrent.up_limit | getDataUnit }}/s
{{ torrent.up_limit | getDataValue }} {{ torrent.up_limit | getDataUnit }}<span v-if="torrent.up_limit !== -1"> /s </span>
</td>
</tr>
<tr>
<td class="grey--text">
Availability
</td>
<td>
{{ torrent.availability }}%
</td>
</tr>
</tbody>