From e2867995afbb275dcaaeeed904b0cb8523d387d9 Mon Sep 17 00:00:00 2001 From: wangdan-fit2cloud Date: Wed, 24 Jul 2024 15:26:17 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E5=A4=8D=E6=8F=90=E7=A4=BA?= =?UTF-8?q?=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ui/src/views/paragraph/component/ParagraphForm.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/src/views/paragraph/component/ParagraphForm.vue b/ui/src/views/paragraph/component/ParagraphForm.vue index 92a0cf018..43739d243 100644 --- a/ui/src/views/paragraph/component/ParagraphForm.vue +++ b/ui/src/views/paragraph/component/ParagraphForm.vue @@ -98,7 +98,7 @@ const form = ref({ const rules = reactive({ content: [ { required: true, message: '请输入分段内容', trigger: 'blur' }, - { max: 100000, message: '内容最多不超过 4096 个字', trigger: 'blur' } + { max: 100000, message: '内容最多不超过 100000 个字', trigger: 'blur' } ] })