fix emoji name overflow (again) and sorting

pull/8/head
easrng 2022-02-18 16:52:37 -05:00
parent bc434bfaed
commit 2adc8b9d02
2 changed files with 6 additions and 1 deletions

View File

@ -53,7 +53,7 @@ export async function findEmojis(search) {
await emojisLoaded;
let groups = [[], []];
if (search.length < 1) {
for (let letter in emojis)
for (let letter of Object.keys(emojis).sort())
for (let emoji of emojis[letter]) {
(emoji[1][0] === ":" ? groups[0] : groups[1]).push(emoji);
}

View File

@ -299,6 +299,11 @@ button.small-button {
flex-shrink: 0;
}
.emoji-name {
overflow: hidden;
text-overflow: ellipsis;
}
.emoji-option.selected {
background: var(--fg-transparent);
}