From e2f41b09d69e36c3ecd3c435fb7660a7a6bf488c Mon Sep 17 00:00:00 2001 From: Natsumi Date: Sat, 22 Nov 2025 02:45:49 +1100 Subject: [PATCH] Fix playerList displayName sorting --- src/views/PlayerList/PlayerList.vue | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/views/PlayerList/PlayerList.vue b/src/views/PlayerList/PlayerList.vue index afd5d4c0..514d972b 100644 --- a/src/views/PlayerList/PlayerList.vue +++ b/src/views/PlayerList/PlayerList.vue @@ -327,7 +327,8 @@ :label="t('table.playerList.displayName')" min-width="140" prop="displayName" - :sortable="true"> + sortable + :sort-method="(a, b) => sortAlphabetically(a, b, 'displayName')">