Add user's training to webclient

This commit is contained in:
2020-01-10 00:29:52 +00:00
parent 42f3594e38
commit b1ff647c6e
6 changed files with 72 additions and 8 deletions
+3 -1
View File
@@ -142,7 +142,9 @@ function MemberInfo(props) {
{lastTrans.length ?
lastTrans.map((x, i) =>
<Table.Row key={i}>
<Table.Cell>{x.date}</Table.Cell>
<Table.Cell>
<Link to={'/transactions/'+x.id}>{x.date}</Link>
</Table.Cell>
<Table.Cell>{x.account_type}</Table.Cell>
<Table.Cell>${x.amount}</Table.Cell>
</Table.Row>