From 21d4f5cce6ecf535190d7bb30d4d48897878c9b9 Mon Sep 17 00:00:00 2001 From: David Vo <auscompgeek@users.noreply.github.com> Date: Wed, 30 Dec 2020 19:56:31 +1100 Subject: [PATCH] Show sticker body in hover tooltip --- web/src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/index.js b/web/src/index.js index 5de4bd5..4ac6df5 100644 --- a/web/src/index.js +++ b/web/src/index.js @@ -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> ` -- GitLab