mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-05-08 07:06:41 +00:00
fix header sorting
This commit is contained in:
parent
db39dc7d42
commit
0a02495a95
1 changed files with 1 additions and 1 deletions
|
|
@ -183,7 +183,7 @@ fun AppHeaderView(
|
|||
onMemberRowClicked()
|
||||
}
|
||||
) {
|
||||
for (member in teamPlanMembers?.filter { it.id != user?.id }?.take(6) ?: emptyList()) {
|
||||
for (member in teamPlanMembers?.filter { it.id != user?.id }?.sortedBy { it.authentication?.timestamps?.lastLoggedIn }?.take(6) ?: emptyList()) {
|
||||
Box(modifier = Modifier
|
||||
.clip(CircleShape)
|
||||
.size(26.dp)
|
||||
|
|
|
|||
Loading…
Reference in a new issue