From 30a2133bbafca10a45ea6aae6cf31265575439ee Mon Sep 17 00:00:00 2001 From: CaptainB Date: Fri, 18 Oct 2024 15:41:54 +0800 Subject: [PATCH] =?UTF-8?q?style:=20=E4=BF=AE=E5=A4=8Del-form-item=20label?= =?UTF-8?q?=E6=A0=B7=E5=BC=8F=E6=B2=A1=E7=94=9F=E6=95=88=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/views/application/ApplicationSetting.vue | 4 ++++ ui/src/workflow/nodes/base-node/index.vue | 8 ++++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/ui/src/views/application/ApplicationSetting.vue b/ui/src/views/application/ApplicationSetting.vue index 30c1c9998f..fbb028ef07 100644 --- a/ui/src/views/application/ApplicationSetting.vue +++ b/ui/src/views/application/ApplicationSetting.vue @@ -865,4 +865,8 @@ onMounted(() => { .prologue-md-editor { height: 150px; } + +:deep(.el-form-item__label) { + display: block; +} diff --git a/ui/src/workflow/nodes/base-node/index.vue b/ui/src/workflow/nodes/base-node/index.vue index 196be0f6c6..181296fd22 100644 --- a/ui/src/workflow/nodes/base-node/index.vue +++ b/ui/src/workflow/nodes/base-node/index.vue @@ -285,7 +285,7 @@ const props = defineProps<{ nodeModel: any }>() const sttModelOptions = ref(null) const ttsModelOptions = ref(null) const providerOptions = ref>([]) -const TTSModeParamSettingDialogRef = ref>() +const TTSModeParamSettingDialogRef = ref>() const form = { name: '', @@ -420,4 +420,8 @@ onMounted(() => { getSTTModel() }) - +