fix(系统设置): 编辑工作空间时显示名称长度限制
--bug=1020856 --user=李玉号 【系统设置】编辑工作空间时,建议名称输入框跟新建一样增加字符长度提示 https://www.tapd.cn/55049933/s/1315514
This commit is contained in:
parent
2938a1e9a6
commit
fb33703695
|
@ -68,7 +68,7 @@
|
|||
width="30%" @close="close" v-loading="workspaceUpdateLoading">
|
||||
<el-form :model="form" :rules="rules" ref="updateForm" label-position="right" label-width="100px" size="small">
|
||||
<el-form-item :label="$t('commons.name')" prop="name">
|
||||
<el-input v-model="form.name" autocomplete="off" class="form-input"/>
|
||||
<el-input v-model="form.name" autocomplete="off" class="form-input" show-word-limit maxlength="100"/>
|
||||
</el-form-item>
|
||||
<el-form-item :label="$t('commons.description')" prop="description">
|
||||
<el-input type="textarea" v-model="form.description" class="form-input"></el-input>
|
||||
|
|
Loading…
Reference in New Issue