Skip to content

Commit

Permalink
chore(text-area): add new string for when character length is `tooSho…
Browse files Browse the repository at this point in the history
…rt` (#11006)

**Related Issue:** #10970

## Summary
Check in new string.
  • Loading branch information
Elijbet authored Dec 18, 2024
1 parent 9ccef4f commit 38accc3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"invalid": "Invalid",
"tooLong": "The current character length is {currentLength}, which exceeds the maximum character length of {maxLength}."
"tooLong": "The current character length is {currentLength}, which exceeds the maximum character length of {maxLength}.",
"tooShort": "The current character length is {currentLength}, which is less than the minimum character length of {minLength}."
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"invalid": "Invalid",
"tooLong": "The current character length is {currentLength}, which exceeds the maximum character length of {maxLength}."
"tooLong": "The current character length is {currentLength}, which exceeds the maximum character length of {maxLength}.",
"tooShort": "The current character length is {currentLength}, which is less than the minimum character length of {minLength}."
}

0 comments on commit 38accc3

Please sign in to comment.