Skip to content

Commit

Permalink
emotelist
Browse files Browse the repository at this point in the history
  • Loading branch information
slugalisk committed Jul 21, 2024
1 parent fbcea9d commit ed94fad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions assets/emotelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ const table = document.createElement('table');
document.body.appendChild(table);
const thead = document.createElement('tr');
table.appendChild(thead);
['emote', 'original', 'october', 'december'].forEach((header) => {
['emote', 'original', 'october', 'december', 'lotr'].forEach((header) => {
const th = document.createElement('th');
th.innerText = header;
thead.appendChild(th);
Expand All @@ -18,7 +18,7 @@ Object.entries(emoteCreators.default).sort(([a], [b]) => a.localeCompare(b)).for
[name, creators.createdby, creators.october, creators.december].forEach((creator) => {
const col = document.createElement('td');
col.innerText = creator;
if (creator === '') {
if (!creator) {
col.classList.add('missing');
}
row.appendChild(col);
Expand Down

0 comments on commit ed94fad

Please sign in to comment.