[Glitch] Remove system tooltip for alt text in web UI
Port 956873362e
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
pull/2955/head
parent
a21f35786d
commit
560eaff2c4
|
@ -147,7 +147,6 @@ class Item extends PureComponent {
|
|||
srcSet={srcSet}
|
||||
sizes={sizes}
|
||||
alt={description}
|
||||
title={description}
|
||||
lang={lang}
|
||||
style={{ objectPosition: letterbox ? null : `${x}% ${y}%` }}
|
||||
onLoad={this.handleImageLoad}
|
||||
|
@ -169,7 +168,6 @@ class Item extends PureComponent {
|
|||
<video
|
||||
className={`media-gallery__item-gifv-thumbnail${letterbox ? ' letterbox' : ''}`}
|
||||
aria-label={description}
|
||||
title={description}
|
||||
lang={lang}
|
||||
role='application'
|
||||
src={attachment.get('url')}
|
||||
|
|
|
@ -96,7 +96,6 @@ export const MediaItem: React.FC<{
|
|||
<img
|
||||
src={previewUrl || avatarUrl}
|
||||
alt={description}
|
||||
title={description}
|
||||
lang={lang}
|
||||
onLoad={handleImageLoad}
|
||||
/>
|
||||
|
@ -116,7 +115,6 @@ export const MediaItem: React.FC<{
|
|||
<img
|
||||
src={previewUrl}
|
||||
alt={description}
|
||||
title={description}
|
||||
lang={lang}
|
||||
style={{ objectPosition: `${x}% ${y}%` }}
|
||||
onLoad={handleImageLoad}
|
||||
|
@ -134,7 +132,6 @@ export const MediaItem: React.FC<{
|
|||
<video
|
||||
className='media-gallery__item-gifv-thumbnail'
|
||||
aria-label={description}
|
||||
title={description}
|
||||
lang={lang}
|
||||
src={fullUrl}
|
||||
onMouseEnter={handleMouseEnter}
|
||||
|
|
Loading…
Reference in New Issue