Skip to content

Commit

Permalink
feat(earnings details): display number of captures attached to earnin…
Browse files Browse the repository at this point in the history
…gs record

Greenstand#347
  • Loading branch information
Mloweedgar committed Feb 22, 2022
1 parent 5e5638c commit be0dcf0
Showing 1 changed file with 7 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -181,12 +181,16 @@ function CustomTableItemDetails(props) {
<Grid container direction="row">
<Grid item sm={5}>
<Typography>Amount</Typography>
<Typography variant="h6">{selectedItem.amount} </Typography>
<Typography variant="h6">
{selectedItem.amount} {selectedItem.currency}{' '}
</Typography>
</Grid>

<Grid item>
<Typography>Currency</Typography>
<Typography variant="h6">{selectedItem.currency}</Typography>
<Typography>Captures Count</Typography>
<Typography variant="h6">
{selectedItem.captures_count}
</Typography>
</Grid>
</Grid>

Expand Down

0 comments on commit be0dcf0

Please sign in to comment.