diff options
| author | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-08 11:33:16 +0000 |
|---|---|---|
| committer | Andrej Mihajlov <and@codeispoetry.ru> | 2017-03-08 11:33:16 +0000 |
| commit | 9db201013ed2f0e43be5ed9e09430cfdde5a5dcd (patch) | |
| tree | d5fdf14fa0b3f06318d715a1073ffc4db68abb26 /app/components/Account.js | |
| parent | 2b5f3f9088013b36cd2c026ba019877d531ee2dc (diff) | |
| download | mullvadvpn-9db201013ed2f0e43be5ed9e09430cfdde5a5dcd.tar.xz mullvadvpn-9db201013ed2f0e43be5ed9e09430cfdde5a5dcd.zip | |
Change "Auto-secure" to "Auto-connect"
Capitalise time & date value for "paid until"
Diffstat (limited to 'app/components/Account.js')
| -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 174d486273..12f3c1b6a8 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').toUpperCase(); let isOutOfTime = paidUntil.isSameOrBefore(moment()); return ( |
