mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2025-02-18 00:02:02 +03:00
bugfix: New select mode color
This commit is contained in:
parent
129ef450bc
commit
a9653d9b0d
1 changed files with 3 additions and 1 deletions
|
@ -35,7 +35,9 @@ export default {
|
|||
return this.selected_torrents.includes(this.torrent.hash)
|
||||
},
|
||||
style() {
|
||||
return `sideborder ${this.torrent.state.toLowerCase()} ${this.isSelected ? 'v-chip' : ''}`
|
||||
const state = this.torrent.state.toLowerCase()
|
||||
|
||||
return `sideborder ${state} ${this.isSelected ? `torrent-${state}-color` : ''}`
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
|
Loading…
Add table
Reference in a new issue