diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-06 17:35:22 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-06 17:35:22 +0000 |
| commit | 1f12c28f6f1ab841f96ed9fdee7a87f583358e28 (patch) | |
| tree | 3009d4acb11a7c95541e8f009397e9470e5eac17 | |
| parent | 82fe4d60736817ad5caf4fdca5d4994ecbc9f5df (diff) | |
| download | mullvadvpn-1f12c28f6f1ab841f96ed9fdee7a87f583358e28.tar.xz mullvadvpn-1f12c28f6f1ab841f96ed9fdee7a87f583358e28.zip | |
Add comma between time and date
| -rw-r--r-- | app/components/Account.js | 2 |
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 ( |
