mirror of
https://github.com/VueTorrent/VueTorrent.git
synced 2024-11-28 13:08:53 +03:00
perf(TRC): display "set priority" visibility when queuing is enabled only (#976)
This commit is contained in:
parent
4445d37139
commit
f2cd9e19a1
1 changed files with 2 additions and 2 deletions
|
@ -92,7 +92,7 @@
|
|||
</v-list-item>
|
||||
</v-list>
|
||||
</v-menu>
|
||||
<v-menu :open-on-hover="!touchmode" top offset-x :transition="isRightside ? 'slide-x-reverse-transition' : 'slide-x-transition'" :left="isRightside">
|
||||
<v-menu v-if="settings.queueing_enabled" :open-on-hover="!touchmode" top offset-x :transition="isRightside ? 'slide-x-reverse-transition' : 'slide-x-transition'" :left="isRightside">
|
||||
<template #activator="{ on }">
|
||||
<v-list-item link v-on="on">
|
||||
<v-icon>{{ mdiPriorityHigh }}</v-icon>
|
||||
|
@ -349,7 +349,7 @@ export default {
|
|||
},
|
||||
computed: {
|
||||
...mapGetters(['getCategories', 'getAvailableTags', 'getTorrent']),
|
||||
...mapState(['selected_torrents']),
|
||||
...mapState(['selected_torrents', 'settings']),
|
||||
availableCategories() {
|
||||
const categories = [{ name: 'None', value: '' }]
|
||||
categories.push(
|
||||
|
|
Loading…
Reference in a new issue