Adding space between status icon and status text on the jobs list page

This commit is contained in:
Jared Tabor
2015-05-18 12:49:53 -04:00
parent e4936e4b80
commit 5d696adebf

View File

@@ -482,7 +482,7 @@ angular.module('GeneratorHelpers', [systemStatus.name])
} }
html += "</a>"; html += "</a>";
if (field.alt_text) { if (field.alt_text) {
html += " " + field.alt_text; html += " &nbsp" + field.alt_text;
} }
return html; return html;
}; };