Merge pull request #12806 from dataease/pr@dev-v2@chart-title-style

style(图表): 图表标题备注的长度限制,调整到512
This commit is contained in:
jianneng-fit2cloud 2024-10-21 15:45:36 +08:00 committed by GitHub
commit 1d3992f4d3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -1372,7 +1372,7 @@ export default {
field_can_not_empty: '字段不能为空',
conditions_can_not_empty: '字段的条件不能为空若无条件请直接删除该字段',
remark: '备注',
remark_placeholder: '备注限制50个字符',
remark_placeholder: '备注限制512个字符',
remark_show: '显示备注',
remark_edit: '编辑备注',
remark_bg_color: '背景填充',

View File

@ -383,7 +383,7 @@ watch(
type="textarea"
autosize
v-model="tempRemark"
:maxlength="50"
:maxlength="512"
clearable
:placeholder="t('chart.remark_placeholder')"
/>