diff --git a/awx/ui/client/src/shared/directives.js b/awx/ui/client/src/shared/directives.js
index 6cbd603e4a..b97d3da533 100644
--- a/awx/ui/client/src/shared/directives.js
+++ b/awx/ui/client/src/shared/directives.js
@@ -873,7 +873,7 @@ function(SettingsUtils, i18n, $rootScope) {
id_to_close = "";
if (element[0].id) {
- template = '
';
+ template = '';
}
scope.triggerPopover = function(e) {
@@ -911,6 +911,7 @@ function(SettingsUtils, i18n, $rootScope) {
function bindPopoverDismiss() {
$('body').one('click.popover' + id_to_close, function(e) {
+ debugger;
if ($(e.target).parents(id_to_close).length === 0) {
// case: you clicked to open the popover and then you
// clicked outside of it...hide it.