feat: 修改系统用户查看ssh密钥的input框展示样式

This commit is contained in:
“怀磊”
2021-11-03 16:17:52 +08:00
committed by 老广
parent 9ba5214937
commit 55743eb2c8

View File

@@ -26,7 +26,7 @@
<el-input v-model="authInfo.password" type="password" show-password />
</el-form-item>
<el-form-item :label="this.$t('assets.SSHKey')">
<el-input v-model="authInfo['private_key']" type="password" show-password />
<el-input v-model="authInfo['private_key']" class="item-textarea" type="textarea" show-password />
</el-form-item>
</el-form>
</div>
@@ -79,5 +79,7 @@ export default {
</script>
<style scoped>
.item-textarea >>> .el-textarea__inner {
height: 110px;
}
</style>