mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-24 18:36:14 +03:00
fix(Content): Fix percent progress not displaying properly (#1007)
This commit is contained in:
parent
8533344d88
commit
ef546cb96c
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@
|
|||
</div>
|
||||
<div v-else>
|
||||
<span v-if="!$vuetify.breakpoint.xsOnly">[{{ node.size | formatData(shouldUseBinaryData()) }}]</span>
|
||||
<span v-if="!$vuetify.breakpoint.xsOnly" class="ml-4">{{ node.progress }} %</span>
|
||||
<span v-if="!$vuetify.breakpoint.xsOnly" class="ml-4">{{ (node.progress*100) | progress }}</span>
|
||||
<span v-if="!$vuetify.breakpoint.xsOnly" class="ml-4">[ {{ getNodePriority(node) }} ]</span>
|
||||
<v-menu open-on-hover offset-y>
|
||||
<template #activator="{ on }">
|
||||
|
|
Loading…
Reference in a new issue