2
2
mirror of https://github.com/Thream/website.git synced 2024-07-06 18:40:12 +02:00

test(e2e): fix display tooltip for Emoji

This commit is contained in:
Divlo 2022-08-29 21:34:24 +02:00
parent 91a87199c4
commit dee8cc2c41
No known key found for this signature in database
GPG Key ID: 8F9478F220CE65E9

View File

@ -27,7 +27,7 @@ export const MessageText: React.FC<MessageContentProps> = (props) => {
return (
<div>
<p>
<Emoji value={message.value} size={40} />
<Emoji value={message.value} size={40} tooltip />
</p>
</div>
)
@ -50,7 +50,7 @@ export const MessageText: React.FC<MessageContentProps> = (props) => {
)
},
emoji: (props) => {
return <Emoji value={props.value} size={20} />
return <Emoji value={props.value} size={20} tooltip />
},
code: (properties) => {
const { inline, className, children, ...props } = properties