- Shipped
- August 10, 2026 at 5:51 PM UTC
- Author
- kamo
- Commit
- 161e3e6
The three tabs opened in whatever order the API happened to return, which for members meant the newest sign-ups were buried and for team members meant no order at all. Each now opens sorted the way the list is actually read: accounts oldest-first, members newest-first, team members alphabetical. The name column's value carries the email so quick-filter can search it, so sorting it needed a comparator that looks at the displayed name alone — and case-insensitively, or lowercase surnames sort after every uppercase one. The sort is re-applied on tab change rather than declared as an initial sort, because the grid instance is shared across the in-component tabs and would otherwise carry the previous tab's ordering over.