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 142e7eff53..a5d2b00a01 100644 --- a/awx/ui/client/src/inventories/list/inventory-list.controller.js +++ b/awx/ui/client/src/inventories/list/inventory-list.controller.js @@ -232,14 +232,14 @@ function InventoriesList($scope, $rootScope, $location, $log, html += ""; html += ``; html += "" + ($filter('longDate')(row.last_updated)).replace(/ /,'
') + ""; - html += "" + ellipsis(row.summary_fields.group.name) + ""; + html += "" + $filter('sanitize')(ellipsis(row.summary_fields.group.name)) + ""; html += "\n"; } else { html += ""; html += ""; html += "NA"; - html += "" + ellipsis(row.summary_fields.group.name) + ""; + html += "" + $filter('sanitize')(ellipsis(row.summary_fields.group.name)) + ""; html += "\n"; } });