summaryrefslogtreecommitdiffstats
path: root/web/react/components/user_settings
diff options
context:
space:
mode:
authorElias Nahum <nahumhbl@gmail.com>2016-02-11 16:29:52 -0300
committerElias Nahum <nahumhbl@gmail.com>2016-02-11 16:29:52 -0300
commitb0252c9aa91ff9382600cd0cb66b69530f080941 (patch)
treefcdd1d60c9893e2f7baed6bd2fa321213b6113ab /web/react/components/user_settings
parent4ffbd3642ed8ad7961218845c7c89108c26a2737 (diff)
downloadchat-b0252c9aa91ff9382600cd0cb66b69530f080941.tar.gz
chat-b0252c9aa91ff9382600cd0cb66b69530f080941.tar.bz2
chat-b0252c9aa91ff9382600cd0cb66b69530f080941.zip
Fix duplicate am/pm on last password update
Diffstat (limited to 'web/react/components/user_settings')
-rw-r--r--web/react/components/user_settings/user_settings_security.jsx8
1 files changed, 3 insertions, 5 deletions
diff --git a/web/react/components/user_settings/user_settings_security.jsx b/web/react/components/user_settings/user_settings_security.jsx
index 5693047c2..166f5ec45 100644
--- a/web/react/components/user_settings/user_settings_security.jsx
+++ b/web/react/components/user_settings/user_settings_security.jsx
@@ -11,6 +11,7 @@ import TeamStore from '../../stores/team_store.jsx';
import * as Client from '../../utils/client.jsx';
import * as AsyncClient from '../../utils/async_client.jsx';
+import * as Utils from '../../utils/utils.jsx';
import Constants from '../../utils/constants.jsx';
import {intlShape, injectIntl, defineMessages, FormattedMessage} from 'mm-intl';
@@ -216,15 +217,12 @@ class SecurityTab extends React.Component {
var describe;
var d = new Date(this.props.user.last_password_update);
- var timeOfDay = ' am';
- if (d.getHours() >= 12) {
- timeOfDay = ' pm';
- }
const locale = global.window.mm_locale;
+ const hours12 = !Utils.useMilitaryTime();
describe = formatMessage(holders.lastUpdated, {
date: d.toLocaleDateString(locale, {month: 'short', day: '2-digit', year: 'numeric'}),
- time: d.toLocaleTimeString(locale, {hours12: true, hour: '2-digit', minute: '2-digit'}) + timeOfDay
+ time: d.toLocaleTimeString(locale, {hour12: hours12, hour: '2-digit', minute: '2-digit'})
});
updateSectionStatus = function updateSection() {