summaryrefslogtreecommitdiffhomepage
path: root/app/components
diff options
context:
space:
mode:
authorAndrej Mihajlov <and@codeispoetry.ru>2017-03-06 17:35:22 +0000
committerAndrej Mihajlov <and@codeispoetry.ru>2017-03-06 17:35:22 +0000
commit1f12c28f6f1ab841f96ed9fdee7a87f583358e28 (patch)
tree3009d4acb11a7c95541e8f009397e9470e5eac17 /app/components
parent82fe4d60736817ad5caf4fdca5d4994ecbc9f5df (diff)
downloadmullvadvpn-1f12c28f6f1ab841f96ed9fdee7a87f583358e28.tar.xz
mullvadvpn-1f12c28f6f1ab841f96ed9fdee7a87f583358e28.zip
Add comma between time and date
Diffstat (limited to 'app/components')
-rw-r--r--app/components/Account.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/components/Account.js b/app/components/Account.js
index d3faea5c96..174d486273 100644
--- a/app/components/Account.js
+++ b/app/components/Account.js
@@ -27,7 +27,7 @@ export default class Account extends Component {
render() {
let paidUntil = moment(this.props.user.paidUntil);
let formattedAccountId = formatAccount(this.props.user.account);
- let formattedPaidUntil = paidUntil.format('hA D MMMM YYYY');
+ let formattedPaidUntil = paidUntil.format('hA, D MMMM YYYY');
let isOutOfTime = paidUntil.isSameOrBefore(moment());
return (