We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9c4bcc1 commit bce4989Copy full SHA for bce4989
BlueMapCommon/webapp/src/components/Menu/MarkerSetMenu.vue
@@ -58,8 +58,8 @@ export default {
58
return marker.type === "player" && (marker.name.includesCI(this.filter.search) || marker.playerUuid.includesCI(this.filter.search));
59
}).sort((a, b) => {
60
if (this.filter.order === "label") {
61
- let la = a.type === "player" ? a.name : a.label;
62
- let lb = b.type === "player" ? b.name : b.label;
+ let la = (a.type === "player" ? a.name : a.label).toLowerCase();
+ let lb = (b.type === "player" ? b.name : b.label).toLowerCase();
63
if (la < lb) return -1;
64
if (la > lb) return 1;
65
return 0;
0 commit comments