summaryrefslogtreecommitdiffstats
path: root/web/react/utils
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2015-08-20 12:59:07 -0400
committerChristopher Speller <crspeller@gmail.com>2015-08-20 12:59:07 -0400
commit24c13730efd74a38a7775fdc39d3c80b4ddaca57 (patch)
tree0c002d6f1a31373f99dc4595787400c8027252d1 /web/react/utils
parent7d5d6ae5b09621f12947de7c28945a844db1ff85 (diff)
downloadchat-24c13730efd74a38a7775fdc39d3c80b4ddaca57.tar.gz
chat-24c13730efd74a38a7775fdc39d3c80b4ddaca57.tar.bz2
chat-24c13730efd74a38a7775fdc39d3c80b4ddaca57.zip
Fixing AM-PM issue
Diffstat (limited to 'web/react/utils')
-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 df7a1e697..09cd299df 100644
--- a/web/react/utils/utils.jsx
+++ b/web/react/utils/utils.jsx
@@ -167,7 +167,7 @@ module.exports.displayTime = function(ticks) {
var ampm = 'AM';
if (hours >= 12) {
- ampm = 'AM';
+ ampm = 'PM';
}
hours = hours % 12;