Skip to content

Commit

Permalink
Merge pull request #85 from wbobeirne/fix-date-display
Browse files Browse the repository at this point in the history
Fix date display
  • Loading branch information
wbobeirne committed Dec 12, 2018
2 parents 1559f08 + d39374f commit a717802
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/TransactionList/TransactionRow.tsx
Expand Up @@ -57,7 +57,7 @@ export default class TransactionRow extends React.Component<Props> {
<div className="TransactionRow-info">
<div className="TransactionRow-info-title">{title}</div>
<div className="TransactionRow-info-time">
{moment.unix(timestamp).format('MMM Mo, LT')}
{moment.unix(timestamp).format('MMM Do, LT')}
</div>
</div>
{delta &&
Expand Down

0 comments on commit a717802

Please sign in to comment.