Merge pull request #4304 from jumpserver/pr@dev@fix_storage_textarea

fixed:Fixed the common item in the storage Settings to be a text field
This commit is contained in:
ZhaoJiSen
2024-08-14 15:48:20 +08:00
committed by GitHub
2 changed files with 13 additions and 7 deletions

View File

@@ -56,6 +56,12 @@ export default {
helpText: this.$t('EsIndex')
}
}
},
comment: {
component: 'el-input',
el: {
type: 'textarea'
}
}
},
getUrl() {
@@ -83,12 +89,6 @@ export default {
return value
}
}
},
computed: {},
methods: {}
}
}
</script>
<style scoped>
</style>

View File

@@ -64,6 +64,12 @@ export default {
},
is_default: {
hidden: (formValue) => formValue.type === 'sftp'
},
comment: {
component: 'el-input',
el: {
type: 'textarea'
}
}
},
cleanFormValue(values) {