aboutsummaryrefslogtreecommitdiffstats
path: root/old-ui/app/components/shift-list-item.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@users.noreply.github.com>2018-12-14 04:48:15 +0800
committerGitHub <noreply@github.com>2018-12-14 04:48:15 +0800
commit435fdae84ac49b1366b8737215d97bd82002dccf (patch)
tree5fd6e5b60c36b66c98385c5e7aafe21daabc4849 /old-ui/app/components/shift-list-item.js
parentb5d6452454de8d12340e5902914fba9f420865dc (diff)
downloadtangerine-wallet-browser-435fdae84ac49b1366b8737215d97bd82002dccf.tar.gz
tangerine-wallet-browser-435fdae84ac49b1366b8737215d97bd82002dccf.tar.zst
tangerine-wallet-browser-435fdae84ac49b1366b8737215d97bd82002dccf.zip
Fix displayed time and date in the activity log. Remove vreme library, add luxon library. (#5932)
Diffstat (limited to 'old-ui/app/components/shift-list-item.js')
-rw-r--r--old-ui/app/components/shift-list-item.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/old-ui/app/components/shift-list-item.js b/old-ui/app/components/shift-list-item.js
index 5454a90bc..01b8d548f 100644
--- a/old-ui/app/components/shift-list-item.js
+++ b/old-ui/app/components/shift-list-item.js
@@ -2,7 +2,7 @@ const inherits = require('util').inherits
const Component = require('react').Component
const h = require('react-hyperscript')
const connect = require('react-redux').connect
-const vreme = new (require('vreme'))()
+const { DateTime } = require('luxon')
const explorerLink = require('etherscan-link').createExplorerLink
const actions = require('../../../ui/app/actions')
const addressSummary = require('../util').addressSummary
@@ -62,7 +62,7 @@ ShiftListItem.prototype.render = function () {
}
function formatDate (date) {
- return vreme.format(new Date(date), 'March 16 2014 14:30')
+ return DateTime.fromMillis(date).toFormat('MMMM d y T')
}
ShiftListItem.prototype.renderUtilComponents = function () {