From ef5ebdd66f02e4d35524fd7201aa67d4f9fc21ad Mon Sep 17 00:00:00 2001 From: Guilherme Eduardo <gegs23@inf.ufpr.br> Date: Wed, 16 Apr 2025 11:50:59 -0300 Subject: [PATCH] Issue #297: UPDATE character limit on resources page --- src/app/publicar/components/AuthorSelection.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/publicar/components/AuthorSelection.js b/src/app/publicar/components/AuthorSelection.js index caa40ae5..aa415da6 100644 --- a/src/app/publicar/components/AuthorSelection.js +++ b/src/app/publicar/components/AuthorSelection.js @@ -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> -- GitLab