Browse code

[fix] user list sorting

Christian Fraß authored on 22/11/2021 23:14:52
Showing 1 changed files
... ...
@@ -190,7 +190,7 @@ namespace ns_view
190 190
 		(
191 191
 			(x, y) =>
192 192
 			(
193
-				(x.role >= y.role)
193
+				(x.role > y.role)
194 194
 				? -1
195 195
 				: (
196 196
 					(x.role === y.role)