Show start date when sorting by newest

master
Tanner Collin 9 months ago
parent 543249335f
commit c713b7e3e1
  1. 6
      webclient/src/Members.js

@ -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…
Cancel
Save