Skip to content

Commit bdba507

Browse files
committed
feat: reduce maximum description length in CreateFolderDialog to improve user input validation
--bug=1057414 --user=刘瑞斌 【工具】文件夹描述=256,保存时报错 https://www.tapd.cn/62980211/s/1718745
1 parent bac0f79 commit bdba507

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/components/folder-tree/CreateFolderDialog.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
v-model="folderForm.desc"
3030
type="textarea"
3131
:placeholder="$t('components.folder.descriptionPlaceholder')"
32-
maxlength="256"
32+
maxlength="128"
3333
show-word-limit
3434
:autosize="{ minRows: 3 }"
3535
@blur="folderForm.desc = folderForm.desc.trim()"

0 commit comments

Comments
 (0)