diff --git a/awx/ui/client/src/inventories/list/inventory-list.controller.js b/awx/ui/client/src/inventories/list/inventory-list.controller.js
index 096ea2ad31..e57a7beb32 100644
--- a/awx/ui/client/src/inventories/list/inventory-list.controller.js
+++ b/awx/ui/client/src/inventories/list/inventory-list.controller.js
@@ -230,7 +230,7 @@ function InventoriesList($scope, $rootScope, $location, $log,
data.results.forEach( function(row) {
if (row.related.last_update) {
html += "
";
- html += " | ";
+ html += ` | `;
html += "" + ($filter('longDate')(row.last_updated)).replace(/ /,' ') + " | ";
html += "" + ellipsis(row.summary_fields.group.name) + " | ";
html += "
\n";
diff --git a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js
index 9ea29b7374..7a4bd4b408 100644
--- a/awx/ui/client/src/notifications/notification-templates-list/list.controller.js
+++ b/awx/ui/client/src/notifications/notification-templates-list/list.controller.js
@@ -131,7 +131,7 @@ export default
recent_notifications.forEach(function(row) {
html += "\n";
- html += " | \n";
+ html += ` | `;
html += "" + ($filter('longDate')(row.created)).replace(/ /,' ') + " | \n";
html += "
\n";
});
diff --git a/awx/ui/client/src/smart-status/smart-status.block.less b/awx/ui/client/src/smart-status/smart-status.block.less
index 92b5244e4f..0757529d45 100644
--- a/awx/ui/client/src/smart-status/smart-status.block.less
+++ b/awx/ui/client/src/smart-status/smart-status.block.less
@@ -38,6 +38,7 @@
line-height: 22px;
}
+.SmartStatus-tooltip--successful,
.SmartStatus-tooltip--success{
color: @default-succ;
padding-left: 5px;