mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-05-09 00:32:21 +03:00
0.5.6 (#134)
This commit is contained in:
parent
5b9aa79d74
commit
34ef51c69b
14 changed files with 93 additions and 42 deletions
src/components/Modals/TorrentDetailModal/Tabs
|
@ -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>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue