add effective amount and claim_id to file page

This commit is contained in:
Sean Yesmunt 2020-02-11 14:09:29 -05:00
parent 6a529d55ba
commit c8451483b3
2 changed files with 10 additions and 0 deletions

View file

@ -58,6 +58,14 @@ class FileDetails extends PureComponent<Props> {
<td> {__('Bid Amount')}</td>
<td>{claim.amount} LBC</td>
</tr>
<tr>
<td> {__('Effective Amount')}</td>
<td>{claim.meta.effective_amount} LBC</td>
</tr>
<tr>
<td> {__('Claim ID')}</td>
<td>{claim.claim_id}</td>
</tr>
{fileSize && (
<tr>
<td> {__('File Size')}</td>

View file

@ -76,6 +76,8 @@
}
.table--file-details {
font-size: var(--font-small);
td:nth-of-type(1) {
width: 30%;
}