Skip to content
This repository has been archived by the owner on Aug 6, 2021. It is now read-only.

Commit

Permalink
Removed the human readble function since its bugged at the moment, bu…
Browse files Browse the repository at this point in the history
…mped version for release
  • Loading branch information
DennisSnijder committed Oct 21, 2017
1 parent 67b82f8 commit 3ab167c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"description": "BunqDesktop application",
"name": "bunq-desktop",
"productName": "BunqDesktop",
"version": "0.4.0",
"version": "0.5.0",
"author": "Gregory Goijaerts (crecketgaming@gmail.com)",
"license": "MIT",
"main": "app/background.js",
Expand Down
2 changes: 1 addition & 1 deletion src/react/Pages/Dashboard/PaymentListItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class PaymentListItem extends React.Component {
imageUUID={imageUUID}
/>
</Avatar>
<ListItemText primary={displayName} secondary={humanReadableDate(paymentDate)} />
<ListItemText primary={displayName} secondary={paymentDate} />
<ListItemSecondaryAction>
<p
style={{
Expand Down
2 changes: 1 addition & 1 deletion src/react/Pages/PaymentInfo.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,7 +194,7 @@ class PaymentInfo extends React.Component {
<ListItem>
<ListItemText
primary={"Date"}
secondary={humanReadableDate(paymentDate)}
secondary={paymentDate}
/>
</ListItem>
<Divider />
Expand Down

0 comments on commit 3ab167c

Please sign in to comment.