diff --git a/frontend/src/business/components/project/MsProject.vue b/frontend/src/business/components/project/MsProject.vue index 607914efca..7d913400d0 100644 --- a/frontend/src/business/components/project/MsProject.vue +++ b/frontend/src/business/components/project/MsProject.vue @@ -106,10 +106,10 @@ rules: { name: [ {required: true, message: this.$t('project.input_name'), trigger: 'blur'}, - {min: 2, max: 25, message: this.$t('commons.input_limit', [2, 25]), trigger: 'blur'} + {min: 2, max: 50, message: this.$t('commons.input_limit', [2, 50]), trigger: 'blur'} ], description: [ - {max: 50, message: this.$t('commons.input_limit', [0, 50]), trigger: 'blur'} + {max: 500, message: this.$t('commons.input_limit', [0, 500]), trigger: 'blur'} ], }, }