Show start date when sorting by newest
This commit is contained in:
parent
543249335f
commit
c713b7e3e1
|
@ -250,7 +250,11 @@ export function Members(props) {
|
||||||
'None'
|
'None'
|
||||||
}
|
}
|
||||||
</Item.Description>
|
</Item.Description>
|
||||||
<Item.Description>Joined: {x.member.application_date || 'Unknown'}</Item.Description>
|
{sort === 'newest_active' ?
|
||||||
|
<Item.Description>Started: {x.member.current_start_date || 'Unknown'}</Item.Description>
|
||||||
|
:
|
||||||
|
<Item.Description>Joined: {x.member.application_date || 'Unknown'}</Item.Description>
|
||||||
|
}
|
||||||
</>
|
</>
|
||||||
}
|
}
|
||||||
</Item.Content>
|
</Item.Content>
|
||||||
|
|
Loading…
Reference in New Issue
Block a user