This commit is contained in:
Huong Nguyen
2025-05-01 09:54:20 +07:00
3 changed files with 4 additions and 4 deletions
+1 -1
View File
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
+2 -2
View File
@@ -125,7 +125,7 @@ const createHeaderRow = async(rowIndex, name) => {
const html = await renderTemplate('core/emoji/header_row', context);
const temp = document.createElement('div');
temp.innerHTML = html;
return temp.firstChild;
return temp.firstElementChild;
};
/**
@@ -154,7 +154,7 @@ const createEmojiRow = async(rowIndex, emojis) => {
const html = await renderTemplate('core/emoji/emoji_row', context);
const temp = document.createElement('div');
temp.innerHTML = html;
return temp.firstChild;
return temp.firstElementChild;
};
/**