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 4234546 commit 5e4e74b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion assets/emotelist.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Object.entries(emoteCreators.default).sort(([a], [b]) => a.localeCompare(b)).for
table.appendChild(row);
[name, creators.createdby, creators.october, creators.december, creators.lotr].forEach((creator) => {
const col = document.createElement('td');
col.innerText = creator;
col.innerText = creator || '';
if (!creator) {
col.classList.add('missing');
}
Expand Down

0 comments on commit 5e4e74b

Please sign in to comment.