Skip to content

Commit 835505c

Browse files
committed
fix: correct user sorting order in Admin view by changing name field order from descending to ascending
1 parent ae912ad commit 835505c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/src/views/Admin.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ const filterUserType = ref(null);
427427
428428
const userSortMeta = ref([
429429
{ field: "is_admin", order: -1 },
430-
{ field: "name", order: -1 },
430+
{ field: "name", order: 1 },
431431
]);
432432
433433
const showUserDialog = ref(false);

0 commit comments

Comments
 (0)