mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 21:18:54 +03:00
fix: torrent progress color #410
This commit is contained in:
parent
ce698e38a8
commit
886bc13f10
3 changed files with 3 additions and 2 deletions
|
@ -12,7 +12,7 @@
|
|||
:value="torrent.progress"
|
||||
height="20"
|
||||
:style="phoneLayout ? '' : 'width: 80%;'"
|
||||
:color="`torrent-${state}-color`"
|
||||
:color="`torrent-${state}`"
|
||||
rounded
|
||||
>
|
||||
<span
|
||||
|
|
|
@ -37,7 +37,7 @@ export default {
|
|||
style() {
|
||||
const state = this.torrent.state.toLowerCase()
|
||||
|
||||
return `sideborder ${state} ${this.isSelected ? `torrent-${state}-color` : ''}`
|
||||
return `sideborder ${state} ${this.isSelected ? `torrent-${state}` : ''}`
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
|
@ -13,6 +13,7 @@ const locale = {
|
|||
torrent: {
|
||||
title: 'titel',
|
||||
added: 'toegevoegd op',
|
||||
availability: 'beschikbaarheid',
|
||||
size: 'grootte',
|
||||
progress: 'vooruitgang',
|
||||
directory: 'map',
|
||||
|
|
Loading…
Reference in a new issue