Skip to content

Commit

Permalink
Fix [Project] Validation on project's description in UI
Browse files Browse the repository at this point in the history
  • Loading branch information
mavdryk committed Nov 16, 2023
1 parent 2f6fc03 commit a3b0553
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ const ProjectDescription = ({
<TextArea
floatingLabel
label="Project description"
maxLength={500}
maxLength={255}
onBlur={() => handleOnBlur(DESCRIPTION)}
onChange={value => handleOnChangeProject(DESCRIPTION, value)}
type="text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ const CreateProjectDialog = ({
/>
</div>
<div className="form-row">
<FormTextarea name="description" label="Description" maxLength={500} />
<FormTextarea name="description" label="Description" maxLength={255} />
</div>
<div className="form-row">
<FormChipCell
Expand Down

0 comments on commit a3b0553

Please sign in to comment.