I am working in a project with reactjs and when i hover on an icon file (after uploading it o pre-charging it) this displays:
Do you know how i can remove this?
I am working in a project with reactjs and when i hover on an icon file (after uploading it o pre-charging it) this displays:
Do you know how i can remove this?
The 'hint' you see when you hover is a default browser behavior, but you can suggest different text using the 'title' attribute:
<a href="/mydownload.png" target="_new" title="Click to download 'image.png'">image.png</a>
And then "Click to download 'image.png'" would replace the string in your black box there.