Sort codes by issuer
This commit is contained in:
parent
517ce33fd9
commit
39e28dd63b
1 changed files with 3 additions and 0 deletions
|
@ -28,6 +28,9 @@ class CodeStore {
|
|||
code.id = entry.key;
|
||||
codes.add(code);
|
||||
}
|
||||
codes.sort((c1, c2) {
|
||||
return c1.issuer.toLowerCase().compareTo(c2.issuer.toLowerCase());
|
||||
});
|
||||
return codes;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue