From 462742961a2dee6e5098051703868816671c348b Mon Sep 17 00:00:00 2001 From: jxxghp Date: Wed, 20 Nov 2024 08:26:07 +0800 Subject: [PATCH] =?UTF-8?q?fix(SubscribeEditDialog):=20=E4=B8=8B=E8=BD=BD?= =?UTF-8?q?=E5=99=A8=E5=AD=97=E6=AE=B5=E6=9B=B4=E6=96=B0=E9=BB=98=E8=AE=A4?= =?UTF-8?q?=E5=80=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/dialog/SubscribeEditDialog.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/dialog/SubscribeEditDialog.vue b/src/components/dialog/SubscribeEditDialog.vue index 895c6149..c585c486 100644 --- a/src/components/dialog/SubscribeEditDialog.vue +++ b/src/components/dialog/SubscribeEditDialog.vue @@ -50,6 +50,7 @@ const subscribeForm = ref({ sites: [], best_version: undefined, current_priority: 0, + downloader: '', date: '', show_edit_dialog: false, }) @@ -65,7 +66,7 @@ async function loadDownloaderSetting() { const result: { [key: string]: any } = await api.get('system/setting/Downloaders') const downloaders = result.data?.value ?? [] downloaderOptions.value = [ - { title: '默认', value: null }, + { title: '默认', value: '' }, ...downloaders.map((item: { name: any }) => ({ title: item.name, value: item.name,