commit 13e3aaaed1290963564a63ef4f227a7d5fa54c11
parent 9b139b632098e6741b10fa87ff6224dcb5045947
Author: f0x52 <f0x@cthu.lu>
Date: Wed, 18 Jan 2023 15:16:29 +0100
[chore] Fix new emoji preview title/alt text (#1354)
* fix new emoji preview title/alt text
* empty commit to start Drone pr build
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/web/source/settings/admin/emoji/local/new-emoji.js b/web/source/settings/admin/emoji/local/new-emoji.js
@@ -73,8 +73,8 @@ module.exports = function NewEmojiForm() {
emojiOrShortcode = <img
className="emoji"
src={image.previewValue}
- title={`:${shortcode}:`}
- alt={shortcode}
+ title={`:${shortcode.value}:`}
+ alt={shortcode.value}
/>;
}