chore: set alt of Twemoji for copying
This commit is contained in:
parent
8b24d8813f
commit
0684ba645e
3 changed files with 5 additions and 2 deletions
|
@ -98,7 +98,8 @@ function RenderEmoticonElement({
|
|||
isUsingTwemoji() ? <img
|
||||
className={css.EmoticonImg}
|
||||
src={getEmojiUrl(element.key)}
|
||||
alt={element.shortcode}
|
||||
alt={element.key}
|
||||
title={element.shortcode}
|
||||
/> : element.key
|
||||
)}
|
||||
{children}
|
||||
|
|
|
@ -283,7 +283,8 @@ const NativeEmoji = (emoji: IEmoji) =>
|
|||
loading="lazy"
|
||||
className={css.EmoticonImg}
|
||||
src={getEmojiUrl(emoji.unicode)}
|
||||
alt={emoji.shortcode}
|
||||
alt={emoji.unicode}
|
||||
title={emoji.shortcode}
|
||||
/> : emoji.unicode;
|
||||
|
||||
export function EmojiItem({
|
||||
|
|
|
@ -46,6 +46,7 @@ export const scaleSystemEmoji = (text: string): (string | JSX.Element)[] =>
|
|||
return <span key={`scaleSystemEmoji-${pushIndex}`} className={css.EmoticonBase}>{
|
||||
isUsingTwemoji() ? <img
|
||||
className={className}
|
||||
alt={char}
|
||||
title={title}
|
||||
src={getEmojiUrl(char)}
|
||||
/> : <span
|
||||
|
|
Loading…
Reference in a new issue