Skip to content
Snippets Groups Projects
Commit 1354df1a authored by Richard Fernando Heise Ferreira's avatar Richard Fernando Heise Ferreira
Browse files

Merge branch 'issue-297/UPDATE-character-limit-resources-page' into 'develop'

Issue 297/update character limit resources page

See merge request !273
parents ca0b3f60 aad64f3b
Branches
No related tags found
1 merge request!273Issue 297/update character limit resources page
Pipeline #41931 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