Skip to content

Commit ff2bbf0

Browse files
committed
Merge PR #848.
2 parents 446c636 + 987a87f commit ff2bbf0

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/oath/state.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,8 @@ class FilteredCredentialsNotifier extends StateNotifier<List<OathPair>> {
195195
.where((pair) => pair.credential.issuer != '_hidden')
196196
.toList()
197197
..sort((a, b) {
198-
String searchKey(OathCredential c) => (c.issuer ?? '') + c.name;
198+
String searchKey(OathCredential c) =>
199+
((c.issuer ?? '') + c.name).toLowerCase();
199200
return searchKey(a.credential).compareTo(searchKey(b.credential));
200201
}),
201202
);

0 commit comments

Comments
 (0)