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

Issue #297: UPDATE character limit on resources page

parent ca0b3f60
No related branches found
No related tags found
1 merge request!273Issue 297/update character limit resources page
Pipeline #41930 passed
......@@ -23,7 +23,7 @@ export default function ShareButton({ type, id }) {
aria-label="Compartilhar"
>
<ShareOutlinedIcon fontSize="small" />
<span className="hidden md:inline">Compartilhar perfil</span>
<span className="hidden md:inline">Compartilhar</span>
</button>
<ShareModal
open={shareOpen}
......
......@@ -64,7 +64,7 @@ export default function GroupButton({ profileData, idLogin }) {
function shareLink(url) {
if (navigator.share) {
navigator.share({
title: "Compartilhar perfil",
title: "Compartilhar",
url: url,
})
.then(() => console.log("Compartilhamento realizado com sucesso"))
......
......@@ -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