fix(系统设置): 编辑工作空间时显示名称长度限制

--bug=1020856 --user=李玉号 【系统设置】编辑工作空间时,建议名称输入框跟新建一样增加字符长度提示
https://www.tapd.cn/55049933/s/1315514
This commit is contained in:
shiziyuan9527 2022-12-14 11:08:01 +08:00 committed by lyh
parent 2938a1e9a6
commit fb33703695
1 changed files with 1 additions and 1 deletions

View File

@ -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>