summaryrefslogtreecommitdiffstats
path: root/web/react/utils/utils.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'web/react/utils/utils.jsx')
-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;