Unverified Commit 666185c0 authored by Pierre-Louis's avatar Pierre-Louis Committed by GitHub

[Fonts] Fix icons sorting (#86434)

* Fix sorting

* Update icons.dart
parent 57a4b023
......@@ -393,7 +393,7 @@ class _Icon {
if (shortId == b.shortId) {
return id.length - b.id.length;
}
return flutterId.compareTo(b.flutterId);
return shortId.compareTo(b.shortId);
}
String _replaceLast(String string, String toReplace) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment