mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 10:12:51 +00:00
style: 修复el-form-item label样式没生效的问题
This commit is contained in:
parent
88bf5c25d2
commit
2d7e00031e
|
|
@ -865,4 +865,8 @@ onMounted(() => {
|
|||
.prologue-md-editor {
|
||||
height: 150px;
|
||||
}
|
||||
|
||||
:deep(.el-form-item__label) {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
|
|
@ -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: '',
|
||||
|
|
@ -420,4 +420,8 @@ onMounted(() => {
|
|||
getSTTModel()
|
||||
})
|
||||
</script>
|
||||
<style lang="scss" scoped></style>
|
||||
<style lang="scss" scoped>
|
||||
:deep(.el-form-item__label) {
|
||||
display: block;
|
||||
}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in New Issue