mirror of https://github.com/apache/cloudstack.git
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.
This commit is contained in:
parent
5d19a936a2
commit
f34f001371
|
|
@ -1399,7 +1399,7 @@
|
|||
},
|
||||
onPerformAction: function() {
|
||||
$tr.addClass('loading').find('td:last').prepend($('<div>').addClass('loading'));
|
||||
$quickViewTooltip.hide();
|
||||
$quickViewTooltip.detach();
|
||||
},
|
||||
onActionComplete: function() {
|
||||
if (listViewArgs.onActionComplete) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue