From d17abae3f36e1889ef1316515afd62e316ecc96b Mon Sep 17 00:00:00 2001 From: John Mitchell Date: Tue, 16 Jun 2015 13:29:43 -0400 Subject: [PATCH] fixed delete not showing any content --- awx/ui/static/js/helpers/CustomInventory.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/awx/ui/static/js/helpers/CustomInventory.js b/awx/ui/static/js/helpers/CustomInventory.js index 748043ebf5..60d94b1ef3 100644 --- a/awx/ui/static/js/helpers/CustomInventory.js +++ b/awx/ui/static/js/helpers/CustomInventory.js @@ -161,9 +161,10 @@ export default }); }; + var bodyHtml = "
Are you sure you want to delete " + name + "?
"; Prompt({ hdr: 'Delete', - body: "
Are you sure you want to delete " + name + "?
", + body: bodyHtml, action: action }); };