diff --git a/ui/components/History.vue b/ui/components/History.vue
index 14d300fc..71d74be3 100644
--- a/ui/components/History.vue
+++ b/ui/components/History.vue
@@ -107,7 +107,7 @@
- |
-
+
@@ -128,7 +128,7 @@
-
-
+
@@ -247,6 +247,12 @@ import { ucFirst } from '~/utils/index'
import { isEmbedable, getEmbedable } from '~/utils/embedable'
const emitter = defineEmits(['getInfo'])
+const props = defineProps({
+ thumbnails: {
+ type: Boolean,
+ default: true
+ }
+})
const config = useConfigStore()
const stateStore = useStateStore()
const socket = useSocketStore()
@@ -257,6 +263,7 @@ const masterSelectAll = ref(false)
const showQueue = useStorage('showQueue', true)
const hideThumbnail = useStorage('hideThumbnailQueue', false)
const display_style = useStorage('display_style', 'cards')
+const showThumbnails = computed(() => props.thumbnails && !hideThumbnail.value)
const embed_url = ref('')
diff --git a/ui/components/Settings.vue b/ui/components/Settings.vue
index 184196c5..29ec989d 100644
--- a/ui/components/Settings.vue
+++ b/ui/components/Settings.vue
@@ -11,92 +11,87 @@
+
-
+
-
+
-
-
-
- Use random background image.
-
- Reload
-
-
-
-
-
+
+
+ Show Videos Thumbnail when possible
+
+
+
+ {{ show_thumbnail ? 'Enabled' : 'Disabled' }}
+
+
+
+
- Reduce confirm box usage
+ Reduce confirm box usage
{{ reduce_confirm ? 'Enabled' : 'Disabled' }}
-
-
- Reduce the usage of confirm boxes in the WebUI.
-
- Show toasts
+ Show notifications toasts
{{ allow_toasts ? 'Enabled' : 'Disabled' }}
-
-
-
- Show notification toasts. If disabled, you will not see errors reported or anything else.
-
-
- |