From 5d696adebf4f14f394134b16c4af9396f74e3ad8 Mon Sep 17 00:00:00 2001 From: Jared Tabor Date: Mon, 18 May 2015 12:49:53 -0400 Subject: [PATCH] Adding space between status icon and status text on the jobs list page --- awx/ui/static/js/shared/generator-helpers.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/ui/static/js/shared/generator-helpers.js b/awx/ui/static/js/shared/generator-helpers.js index 5979185474..ac317d7608 100644 --- a/awx/ui/static/js/shared/generator-helpers.js +++ b/awx/ui/static/js/shared/generator-helpers.js @@ -482,7 +482,7 @@ angular.module('GeneratorHelpers', [systemStatus.name]) } html += ""; if (field.alt_text) { - html += " " + field.alt_text; + html += "  " + field.alt_text; } return html; };