Skip to content

Commit 7e3d16c

Browse files
committed
Add alphabetical sorting for custom list locations
1 parent 08653ac commit 7e3d16c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ios/MullvadVPN/View controllers/SelectLocation/CustomListLocationNodeBuilder.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ private extension CustomListLocationNode {
6666
})
6767
.sorted(by: { $0.key < $1.key })
6868
.reduce([]) {
69-
$0 + $1.value
69+
return $0 + $1.value.sorted(by: { $0.name < $1.name })
7070
}
7171

7272
children = sortedChildren

0 commit comments

Comments
 (0)