summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-02-11 18:51:20 -0500
committerChristopher Speller <crspeller@gmail.com>2016-02-11 18:51:20 -0500
commitd538aa4a5fd603ff668c87f67035e26449129754 (patch)
tree1b594dd4847545facc20c295e90aede0a1cace8b /web/react/components
parentab1f5acf4d573cc1fae4936650d7e2eb07afdb2e (diff)
parentae8c67365de589238066237c667f5132ced13087 (diff)
downloadchat-d538aa4a5fd603ff668c87f67035e26449129754.tar.gz
chat-d538aa4a5fd603ff668c87f67035e26449129754.tar.bz2
chat-d538aa4a5fd603ff668c87f67035e26449129754.zip
Merge pull request #2155 from ZBoxApp/PLT-1948
PLT-1948: Fix duplicate am/pm on last password update
Diffstat (limited to 'web/react/components')
-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..53d79906f 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.isMilitaryTime();
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() {