From 82010e4ba28831c2c995353369736aa55ed702b5 Mon Sep 17 00:00:00 2001 From: Alex Corey Date: Tue, 9 Jun 2020 14:43:43 -0400 Subject: [PATCH] removes extra spacing --- awx/ui_next/src/util/dates.jsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awx/ui_next/src/util/dates.jsx b/awx/ui_next/src/util/dates.jsx index ba4df777bf..6b8eeea7e1 100644 --- a/awx/ui_next/src/util/dates.jsx +++ b/awx/ui_next/src/util/dates.jsx @@ -24,8 +24,8 @@ export function timeOfDay() { const second = prependZeros(date.getSeconds()); const time = hour > 12 - ? `${hour - 12}:${minute} :${second} PM` - : `${hour}:${minute}:${second}`; + ? `${hour - 12}:${minute}:${second} PM` + : `${hour}:${minute}:${second} AM`; return time; }