forked from AkkomaGang/akkoma-fe
fix #1037 chrome sorting didn't like 0, other sorter was just outright broken
This commit is contained in:
parent
9d45db959f
commit
4b0308ad1f
1 changed files with 2 additions and 2 deletions
|
@ -127,7 +127,7 @@ const instance = {
|
||||||
imageUrl: false,
|
imageUrl: false,
|
||||||
replacement: values[key]
|
replacement: values[key]
|
||||||
}
|
}
|
||||||
}).sort((a, b) => a.displayText - b.displayText)
|
}).sort((a, b) => a.name > b.name ? 1 : -1)
|
||||||
commit('setInstanceOption', { name: 'emoji', value: emoji })
|
commit('setInstanceOption', { name: 'emoji', value: emoji })
|
||||||
} else {
|
} else {
|
||||||
throw (res)
|
throw (res)
|
||||||
|
@ -154,7 +154,7 @@ const instance = {
|
||||||
}
|
}
|
||||||
// Technically could use tags but those are kinda useless right now,
|
// Technically could use tags but those are kinda useless right now,
|
||||||
// should have been "pack" field, that would be more useful
|
// should have been "pack" field, that would be more useful
|
||||||
}).sort((a, b) => a.displayText.toLowerCase() > b.displayText.toLowerCase() ? 1 : 0)
|
}).sort((a, b) => a.displayText.toLowerCase() > b.displayText.toLowerCase() ? 1 : -1)
|
||||||
commit('setInstanceOption', { name: 'customEmoji', value: emoji })
|
commit('setInstanceOption', { name: 'customEmoji', value: emoji })
|
||||||
} else {
|
} else {
|
||||||
throw (res)
|
throw (res)
|
||||||
|
|
Loading…
Reference in a new issue