diff --git a/ui/app/components/ConditionForm.vue b/ui/app/components/ConditionForm.vue index 93b3bae6..c5e2e1af 100644 --- a/ui/app/components/ConditionForm.vue +++ b/ui/app/components/ConditionForm.vue @@ -153,12 +153,20 @@ - - - - For advanced users only. This feature is meant to be expanded later. the only supported key right - now. ignore_download with value of true. Keys must be lowercase with - underscores (e.g., custom_field). + +
+
+
    +
  • For advanced users only. This feature is meant to be expanded later.
  • +
  • Keys must be lowercase with underscores (e.g., custom_field).
  • +
  • You must click on Add to actually add the option.
  • +
  • The key ignore_download with value of true will instruct + YTPTube to ignore the download and directly mark the item as archived. this is useful + to skip certain kind of downloads. +
  • +
+
+
@@ -268,7 +276,7 @@ import { useStorage } from '@vueuse/core' import TextareaAutocomplete from '~/components/TextareaAutocomplete.vue' import type { AutoCompleteOptions } from '~/types/autocomplete'; import type { ConditionItem, ImportedConditionItem } from '~/types/conditions' -import {useConfirm} from '~/composables/useConfirm' +import { useConfirm } from '~/composables/useConfirm' const emitter = defineEmits<{ (e: 'cancel'): void @@ -325,7 +333,7 @@ const checkInfo = async (): Promise => { } if ((!form.cli || '' === form.cli.trim()) && Object.keys(form.extras).length < 1) { - toast.error('Either command options for yt-dlp or at least one extra option is required.') + toast.error('Command options for yt-dlp or at least one extra option is required.') return } @@ -544,4 +552,5 @@ const updateExtraValue = (key: string, event: Event): void => { const value = target.value.trim() form.extras[key] = value ? parseValue(value) : '' } + diff --git a/ui/app/components/GetInfo.vue b/ui/app/components/GetInfo.vue index bbed74ba..67b9006f 100644 --- a/ui/app/components/GetInfo.vue +++ b/ui/app/components/GetInfo.vue @@ -1,45 +1,9 @@ - - diff --git a/ui/app/components/InputAutocomplete.vue b/ui/app/components/InputAutocomplete.vue index 9742cf69..c7298efb 100644 --- a/ui/app/components/InputAutocomplete.vue +++ b/ui/app/components/InputAutocomplete.vue @@ -21,7 +21,7 @@