Skip to content
Snippets Groups Projects
Commit bc23266d authored by HJ's avatar HJ :fire:
Browse files

Merge branch 'fix-emoji-sort-chrome' into 'develop'

fix #1037 chrome sorting didn't like 0, other sorter was just outright broken

Closes #1037

See merge request pleroma/pleroma-fe!1321
parents 9d45db95 4b0308ad
No related branches found
No related tags found
No related merge requests found
......@@ -127,7 +127,7 @@ const instance = {
imageUrl: false,
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 })
} else {
throw (res)
......@@ -154,7 +154,7 @@ const instance = {
}
// Technically could use tags but those are kinda useless right now,
// 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 })
} else {
throw (res)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment