limit max description lenght

This commit is contained in:
SrGooglo 2023-07-08 16:39:20 +00:00
parent 7cfb41bc66
commit 0b76e59990
2 changed files with 2 additions and 2 deletions

View File

@ -154,7 +154,7 @@ export default {
"description": "Change your description for your profile",
"props": {
"placeholder": "Enter here a description for your profile",
"maxLength": 1000,
"maxLength": 320,
"showCount": true,
"allowClear": true
},

View File

@ -15,7 +15,7 @@ const AllowedPublicUpdateFields = [
const MaxStringsLengths = {
fullName: 120,
email: 320,
description: 2000,
description: 320,
}
export default {