diff --git a/ui/app/components/NewDownload.vue b/ui/app/components/NewDownload.vue index 42078657..c93933f6 100644 --- a/ui/app/components/NewDownload.vue +++ b/ui/app/components/NewDownload.vue @@ -523,9 +523,7 @@ const emitter = defineEmits<{ const config = useConfigStore(); const toast = useNotification(); const dialog = useDialog(); -const { findPreset, hasPreset, selectItems, getPresetDefault } = usePresetOptions(undefined, { - order: 'default-first', -}); +const { findPreset, hasPreset, selectItems, getPresetDefault } = usePresetOptions(); const showAdvanced = useStorage('show_advanced', false); const separator = useStorage('url_separator', separators[0]?.value ?? ','); diff --git a/ui/app/components/Simple.vue b/ui/app/components/Simple.vue index eaf2fd27..aae4dc1e 100644 --- a/ui/app/components/Simple.vue +++ b/ui/app/components/Simple.vue @@ -475,7 +475,7 @@ const box = useConfirm(); const app = toRef(configStore, 'app'); const paused = toRef(configStore, 'paused'); const presets = toRef(configStore, 'presets'); -const { selectItems: presetItems } = usePresetOptions(presets, { order: 'custom-first' }); +const { selectItems: presetItems } = usePresetOptions(presets); const { queue, history } = storeToRefs(stateStore); const embedUrl = ref(''); diff --git a/ui/app/components/TaskForm.vue b/ui/app/components/TaskForm.vue index 370dfa6e..d03ba673 100644 --- a/ui/app/components/TaskForm.vue +++ b/ui/app/components/TaskForm.vue @@ -521,9 +521,7 @@ const emitter = defineEmits<{ const toast = useNotification(); const config = useConfigStore(); const dialog = useDialog(); -const { findPreset, getPresetDefault, selectItems } = usePresetOptions(undefined, { - order: 'default-first', -}); +const { findPreset, getPresetDefault, selectItems } = usePresetOptions(); const showImport = useStorage('showTaskImport', false); const createDefaultTask = (source?: Partial): Task => ({ diff --git a/ui/app/components/VideoPlayer.vue b/ui/app/components/VideoPlayer.vue index 6fc4c0cc..e74b19f4 100644 --- a/ui/app/components/VideoPlayer.vue +++ b/ui/app/components/VideoPlayer.vue @@ -1,12 +1,16 @@