Skip to content

Commit

Permalink
fix(Content): Fix percent progress not displaying properly (#1007)
Browse files Browse the repository at this point in the history
  • Loading branch information
Larsluph authored Jul 27, 2023
1 parent 8533344 commit ef546cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TorrentDetail/Tabs/Content.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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 }">
Expand Down

0 comments on commit ef546cb

Please sign in to comment.