From 39ffeb31f9f8f4c7016e3788dd6b9d317639e58f Mon Sep 17 00:00:00 2001 From: Bill Nottingham Date: Mon, 23 Jul 2018 21:24:37 -0400 Subject: [PATCH] Fix moment minute specifier. --- .../dashboard/graphs/job-status/job-status-graph.directive.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/client/src/home/dashboard/graphs/job-status/job-status-graph.directive.js b/awx/ui/client/src/home/dashboard/graphs/job-status/job-status-graph.directive.js index 285a863a69..fc45513f54 100644 --- a/awx/ui/client/src/home/dashboard/graphs/job-status/job-status-graph.directive.js +++ b/awx/ui/client/src/home/dashboard/graphs/job-status/job-status-graph.directive.js @@ -75,7 +75,7 @@ function JobStatusGraph($window, adjustGraphSize, templateUrl, i18n, moment, gra }); if(period === "day") { - timeFormat="H:M"; + timeFormat="H:mm"; } else { timeFormat = "MMM D";