Commit b818d189 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Sort public groups.

parent a74e4f68
......@@ -599,6 +599,9 @@ func getPublicGroups() []publicGroup {
})
}
}
sort.Slice(gs, func(i, j int) bool {
return gs[i].Name < gs[j].Name
})
return gs
}
......
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