From e2e661953474bfe6e7e7f6c828597ba7cb0838ff Mon Sep 17 00:00:00 2001 From: arabcoders Date: Wed, 4 Jun 2025 22:33:05 +0300 Subject: [PATCH 1/2] fixed bug in default URL separator selector. --- ui/components/NewDownload.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/components/NewDownload.vue b/ui/components/NewDownload.vue index a7fbff2b..4cf33d7c 100644 --- a/ui/components/NewDownload.vue +++ b/ui/components/NewDownload.vue @@ -232,7 +232,7 @@ const getSeparatorsName = (value) => { } const showAdvanced = useStorage('show_advanced', false) -const separator = useStorage('url_separator', separators[0]) +const separator = useStorage('url_separator', separators[0].value) const addInProgress = ref(false) From ca106405066a8a32b1b8aeb34e8474845f4018ba Mon Sep 17 00:00:00 2001 From: arabcoders Date: Wed, 4 Jun 2025 22:38:38 +0300 Subject: [PATCH 2/2] Minor improvements to notification dropdown --- ui/components/NotifyDropdown.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/ui/components/NotifyDropdown.vue b/ui/components/NotifyDropdown.vue index 8e977a18..71e330d1 100644 --- a/ui/components/NotifyDropdown.vue +++ b/ui/components/NotifyDropdown.vue @@ -2,16 +2,18 @@