Skip to content
Snippets Groups Projects
Commit ef5ebdd6 authored by Guilherme Eduardo's avatar Guilherme Eduardo
Browse files

Issue #297: UPDATE character limit on resources page

parent ac1c7ef2
Branches
No related tags found
No related merge requests found
Pipeline #41925 passed
......@@ -62,9 +62,9 @@ export default function AuthorSelection({ selectedValue, handleRadioChange, auth
value={author}
onChange={handleAuthorChange}
helperText={<div className=" w-full justify-end flex">
{author?.length}/100
{author?.length}/255
</div>}
error={author?.length > 100}
error={author?.length > 255}
className="mb-5"
/>
</div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment