From 252970f66f15b10ba06982b71d7a190c6c67ae72 Mon Sep 17 00:00:00 2001 From: ArabCoders Date: Thu, 19 Dec 2024 08:35:20 +0300 Subject: [PATCH] Separate toggle for thumbnail --- ui/components/History.vue | 2 +- ui/components/Queue.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/components/History.vue b/ui/components/History.vue index 41d1c4bf..b5ec1792 100644 --- a/ui/components/History.vue +++ b/ui/components/History.vue @@ -273,7 +273,7 @@ const socket = useSocketStore() const selectedElms = ref([]); const masterSelectAll = ref(false); const showCompleted = useStorage('showCompleted', true) -const hideThumbnail = useStorage('hideThumbnail', false) +const hideThumbnail = useStorage('hideThumbnailHistory', false) const direction = useStorage('sortCompleted', 'desc') const video_link = ref('') diff --git a/ui/components/Queue.vue b/ui/components/Queue.vue index d4f4df9f..135a56d8 100644 --- a/ui/components/Queue.vue +++ b/ui/components/Queue.vue @@ -154,7 +154,7 @@ const socket = useSocketStore(); const selectedElms = ref([]); const masterSelectAll = ref(false); const showQueue = useStorage('showQueue', true) -const hideThumbnail = useStorage('hideThumbnail', false) +const hideThumbnail = useStorage('hideThumbnailQueue', false) watch(masterSelectAll, (value) => { for (const key in stateStore.queue) {