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.
1 parent 1981315 commit 8c9e734Copy full SHA for 8c9e734
src/teams.rs
@@ -189,7 +189,7 @@ impl RustTeams {
189
b.is_lead.cmp(&a.is_lead)
190
} else if a.roles.len() != b.roles.len() {
191
// Then by role count (more roles before less roles)
192
- b.roles.cmp(&a.roles)
+ b.roles.len().cmp(&a.roles.len())
193
} else {
194
// Then by the role contents
195
// If there is no role, will return equal, and thus use the original GitHub username
0 commit comments