From a758fa1debbbf600a46a67e40b1784f01fc973b2 Mon Sep 17 00:00:00 2001 From: "Captain.B" Date: Tue, 25 May 2021 14:34:30 +0800 Subject: [PATCH] =?UTF-8?q?fix(=E9=A1=B9=E7=9B=AE):=20=E5=88=9B=E5=BB=BA?= =?UTF-8?q?=E9=A1=B9=E7=9B=AE=E9=95=BF=E5=BA=A6=E9=99=90=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../src/business/components/settings/workspace/MsProject.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/business/components/settings/workspace/MsProject.vue b/frontend/src/business/components/settings/workspace/MsProject.vue index 861e59831d..74548fa1cf 100644 --- a/frontend/src/business/components/settings/workspace/MsProject.vue +++ b/frontend/src/business/components/settings/workspace/MsProject.vue @@ -195,7 +195,7 @@ export default { rules: { name: [ {required: true, message: this.$t('project.input_name'), trigger: 'blur'}, - {min: 2, max: 50, message: this.$t('commons.input_limit', [2, 50]), trigger: 'blur'} + {min: 2, max: 60, message: this.$t('commons.input_limit', [2, 60]), trigger: 'blur'} ], description: [ {max: 250, message: this.$t('commons.input_limit', [0, 250]), trigger: 'blur'}