Browse Source
Merge pull request #626 from mrfelton/fix/settled-invoice-date
fix(activity): show settled date for paid invoices
renovate/lint-staged-8.x
JimmyMow
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
app/routes/activity/components/components/Invoice/Invoice.js
|
|
@ -30,7 +30,7 @@ const Invoice = ({ invoice, ticker, currentTicker, showActivityModal, currencyNa |
|
|
|
</div> |
|
|
|
<div className={styles.subtitle}> |
|
|
|
<Moment format="h:mm a"> |
|
|
|
{invoice.settled ? invoice.settled_date * 1000 : invoice.creation_date * 1000} |
|
|
|
{invoice.settled ? invoice.settle_date * 1000 : invoice.creation_date * 1000} |
|
|
|
</Moment> |
|
|
|
</div> |
|
|
|
</div> |
|
|
|