Fix input freeze on sending message (#343)

This commit is contained in:
ginnyTheCat 2022-02-23 04:05:06 +01:00 committed by GitHub
parent 47cd87e653
commit 2308578622
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View file

@ -53,6 +53,7 @@ function addToGroup(emoji) {
const emojis = [];
emojisData.forEach((emoji) => {
const myShortCodes = shortcodes[emoji.hexcode];
if (!myShortCodes) return;
const em = {
...emoji,
shortcode: Array.isArray(myShortCodes) ? myShortCodes[0] : myShortCodes,

View file

@ -65,7 +65,7 @@ function ViewSource() {
onRequestClose={() => setIsOpen(false)}
contentOptions={<IconButton src={CrossIC} onClick={() => setIsOpen(false)} tooltip="Close" />}
>
{event && renderViewSource()}
{event ? renderViewSource() : <div />}
</PopupWindow>
);
}