We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 446c636 + 987a87f commit ff2bbf0Copy full SHA for ff2bbf0
lib/oath/state.dart
@@ -195,7 +195,8 @@ class FilteredCredentialsNotifier extends StateNotifier<List<OathPair>> {
195
.where((pair) => pair.credential.issuer != '_hidden')
196
.toList()
197
..sort((a, b) {
198
- String searchKey(OathCredential c) => (c.issuer ?? '') + c.name;
+ String searchKey(OathCredential c) =>
199
+ ((c.issuer ?? '') + c.name).toLowerCase();
200
return searchKey(a.credential).compareTo(searchKey(b.credential));
201
}),
202
);
0 commit comments