mirror of
https://github.com/maunium/stickerpicker
synced 2024-11-07 03:34:12 +00:00
Show sticker body in hover tooltip
This commit is contained in:
parent
d3adedf3df
commit
21d4f5cce6
1 changed files with 1 additions and 1 deletions
|
@ -309,7 +309,7 @@ const Pack = ({ pack, send }) => html`
|
|||
|
||||
const Sticker = ({ content, send }) => html`
|
||||
<div class="sticker" onClick=${send} data-sticker-id=${content.id}>
|
||||
<img data-src=${makeThumbnailURL(content.url)} alt=${content.body} />
|
||||
<img data-src=${makeThumbnailURL(content.url)} alt=${content.body} title=${content.body} />
|
||||
</div>
|
||||
`
|
||||
|
||||
|
|
Loading…
Reference in a new issue