Fixed large custom emote size for live chats

This commit is contained in:
Luca 2021-03-16 11:32:36 +01:00
parent 650e3da175
commit 19445c0e80
1 changed files with 1 additions and 1 deletions

View File

@ -161,7 +161,7 @@ export default Vue.extend({
comment.messageHtml = comment.messageHtml + text.text
}
} else if (typeof (text.alt) !== 'undefined') {
const htmlImg = `<img src="${text.url}" alt="${text.alt}" />`
const htmlImg = `<img src="${text.url}" alt="${text.alt}" height="15" width="15" />`
comment.messageHtml = comment.messageHtml + htmlImg
} else {
comment.messageHtml = comment.messageHtml + text.text