Browse Source
fix(activity): show settled date for paid invoices
Fix: #624
renovate/lint-staged-8.x
Tom Kirkpatrick
7 years ago
No known key found for this signature in database
GPG Key ID: 72203A8EC5967EA8
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> |
|
|
|