fix: enhance some interactive experiences

This commit is contained in:
maicss
2024-03-01 23:33:50 +08:00
parent 55481db2ee
commit 81062d4580
3 changed files with 5 additions and 0 deletions
+3
View File
@@ -121,6 +121,9 @@ async function updateSiteInfo() {
<template> <template>
<VDialog <VDialog
scrollable scrollable
:close-on-back="false"
persistent
eager
max-width="60rem" max-width="60rem"
> >
<VCard <VCard
@@ -214,6 +214,7 @@ async function loadDownladerSetting() {
TR_USER, TR_USER,
TR_PASSWORD, TR_PASSWORD,
} }
downloaderTab.value = DOWNLOADER === 'qbittorrent' ? 'qbittorrent' : 'transmission'
} }
} }
catch (error) { catch (error) {
+1
View File
@@ -68,6 +68,7 @@ onBeforeMount(fetchData)
@click="siteAddDialog = true" @click="siteAddDialog = true"
/> />
<SiteAddEditForm <SiteAddEditForm
v-if="siteAddDialog"
v-model="siteAddDialog" v-model="siteAddDialog"
oper="add" oper="add"
@save="siteAddDialog = false; fetchData()" @save="siteAddDialog = false; fetchData()"