Show start date when sorting by newest

This commit is contained in:
Tanner Collin 2023-08-20 03:17:00 +00:00
parent 543249335f
commit c713b7e3e1

View File

@ -250,7 +250,11 @@ export function Members(props) {
'None'
}
</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>