mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-02-18 00:02:02 +03:00
fix: progress and relavance numbers in DetailedPeers screen (#1034)
Co-authored-by: Dinesh Reddy J <dinesh.reddy.ext@juspay.in>
This commit is contained in:
parent
b68c4870ef
commit
4cd7772502
1 changed files with 2 additions and 2 deletions
|
@ -23,12 +23,12 @@
|
|||
{{ item.flags }}
|
||||
</td>
|
||||
<td>{{ item.client }}</td>
|
||||
<td>{{ item.progress | progress }}</td>
|
||||
<td>{{ (item.progress * 100) | progress }}</td>
|
||||
<td>{{ item.dl_speed | formatSpeed(shouldUseBitSpeed()) }}</td>
|
||||
<td>{{ item.downloaded | formatData(shouldUseBinaryData()) }}</td>
|
||||
<td>{{ item.up_speed | formatSpeed(shouldUseBitSpeed()) }}</td>
|
||||
<td>{{ item.uploaded | formatData(shouldUseBinaryData()) }}</td>
|
||||
<td>{{ item.relevance | progress }}</td>
|
||||
<td>{{ (item.relevance * 100) | progress }}</td>
|
||||
<td>{{ item.files }}</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
|
|
Loading…
Add table
Reference in a new issue