diff --git a/src/components/Torrent/DesktopCard.vue b/src/components/Torrent/DesktopCard.vue index dd3227515a..ffae9d45c4 100644 --- a/src/components/Torrent/DesktopCard.vue +++ b/src/components/Torrent/DesktopCard.vue @@ -3,7 +3,6 @@ row wrap class="ma-0 px-4 py-2 ml-0 " - :class="style" >
@@ -41,9 +40,6 @@ export default { } return this.getWebuiSettings().busyTorrentProperties.filter(i => i.active) - }, - style() { - return `sideborder ${this.torrent.state.toLowerCase()} ${this.isSelected ? 'selected' : ''}` } } } diff --git a/src/components/Torrent/MobileCard.vue b/src/components/Torrent/MobileCard.vue index 39c3650bb2..5dc67b69e3 100644 --- a/src/components/Torrent/MobileCard.vue +++ b/src/components/Torrent/MobileCard.vue @@ -3,7 +3,6 @@ row wrap class="ma-0 pa-1" - :class="style" > @@ -87,11 +86,6 @@ export default { }, data: () => ({ mdiChevronUp, mdiChevronDown - }), - computed: { - style() { - return `sideborder ${this.torrent.state.toLowerCase()} ${this.isSelected ? 'selected' : ''}` - } - } + }) } \ No newline at end of file diff --git a/src/components/Torrent/Torrent.vue b/src/components/Torrent/Torrent.vue index d5edea0f23..aed17f22f0 100644 --- a/src/components/Torrent/Torrent.vue +++ b/src/components/Torrent/Torrent.vue @@ -1,7 +1,7 @@