summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStas Vovk <stas@vovk.me>2015-10-15 00:05:39 +0300
committerStas Vovk <stas@vovk.me>2015-10-15 00:06:51 +0300
commit440faabc604fa6763515efd9009a7c276e140f09 (patch)
tree01c1da268a3e0c993e149fe099f56379107452fc
parent29a0c182ef376de8368552e7b472afc960c4ba8a (diff)
downloadchat-440faabc604fa6763515efd9009a7c276e140f09.tar.gz
chat-440faabc604fa6763515efd9009a7c276e140f09.tar.bz2
chat-440faabc604fa6763515efd9009a7c276e140f09.zip
fixed style guide error
-rw-r--r--web/react/utils/utils.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/web/react/utils/utils.jsx b/web/react/utils/utils.jsx
index a5057b5ca..8f01b3e33 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -175,7 +175,7 @@ export function displayTime(ticks) {
}
const useMilitaryTime = PreferenceStore.getPreference(Constants.Preferences.CATEGORY_DISPLAY_SETTINGS, 'use_military_time', {value: 'false'}).value;
- if(useMilitaryTime === 'false') {
+ if (useMilitaryTime === 'false') {
ampm = ' AM';
if (hours >= 12) {
ampm = ' PM';