Skip to content

Commit

Permalink
Added maxLength to form name in settings (#2512)
Browse files Browse the repository at this point in the history
  • Loading branch information
Bonymol-aot authored Jan 13, 2025
1 parent facd604 commit 4e3cae4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions forms-flow-web/src/components/Form/EditForm/FormSettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -227,8 +227,9 @@ const FormSettings = forwardRef((props, ref) => {
isInvalid = {!!errors.name}
feedback = {errors.name}
turnOnLoader={isValidating.name}
onBlur={() => handleBlur('name', formDetails.title)}
/>
onBlur={() => handleBlur('name', formDetails.title)}
maxLength={200}
/>
<FormTextArea
label={t("Description")}
name="description"
Expand Down

0 comments on commit 4e3cae4

Please sign in to comment.