Skip to content

Commit

Permalink
style: 修复el-form-item label样式没生效的问题
Browse files Browse the repository at this point in the history
  • Loading branch information
liuruibin committed Oct 18, 2024
1 parent 88bf5c2 commit 2d7e000
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions ui/src/views/application/ApplicationSetting.vue
Original file line number Diff line number Diff line change
Expand Up @@ -865,4 +865,8 @@ onMounted(() => {
.prologue-md-editor {
height: 150px;
}
:deep(.el-form-item__label) {
display: block;
}
</style>
8 changes: 6 additions & 2 deletions ui/src/workflow/nodes/base-node/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ const props = defineProps<{ nodeModel: any }>()
const sttModelOptions = ref<any>(null)
const ttsModelOptions = ref<any>(null)
const providerOptions = ref<Array<Provider>>([])
const TTSModeParamSettingDialogRef = ref<InstanceType<typeof AIModeParamSettingDialog>>()
const TTSModeParamSettingDialogRef = ref<InstanceType<typeof TTSModeParamSettingDialog>>()
const form = {
name: '',
Expand Down Expand Up @@ -420,4 +420,8 @@ onMounted(() => {
getSTTModel()
})
</script>
<style lang="scss" scoped></style>
<style lang="scss" scoped>
:deep(.el-form-item__label) {
display: block;
}
</style>

0 comments on commit 2d7e000

Please sign in to comment.