From f34f001371c376cc235ccfaf96900cd9dbd141b5 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Tue, 18 Mar 2014 14:31:04 -0700 Subject: [PATCH] Fix incorrect context being passed to hosts->instances section Fixes issue where, if an action is being performed from the quick view in the 'Instances' section, the old context will be passed when viewing instances in the 'hosts' section, causing all instances to be displayed. This was caused by the quickview tooltip still being in the DOM, even after closing it by clicking an action. --- ui/scripts/ui/widgets/listView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/scripts/ui/widgets/listView.js b/ui/scripts/ui/widgets/listView.js index 2a663a177c2..c4b91d32d47 100644 --- a/ui/scripts/ui/widgets/listView.js +++ b/ui/scripts/ui/widgets/listView.js @@ -1399,7 +1399,7 @@ }, onPerformAction: function() { $tr.addClass('loading').find('td:last').prepend($('
').addClass('loading')); - $quickViewTooltip.hide(); + $quickViewTooltip.detach(); }, onActionComplete: function() { if (listViewArgs.onActionComplete) {