mirror of https://github.com/apache/cloudstack.git
bug 12410
Bug was caused by a 'cloudStack.fullRefresh' event being triggered on a non-existent edit widget, for a non-existent project. I changed the widget to only refresh if the current instance is visible (i.e., most likely the user still has active data for it)
This commit is contained in:
parent
2ae4e50a9a
commit
103ede0793
|
|
@ -622,7 +622,9 @@
|
|||
getData();
|
||||
|
||||
$(window).bind('cloudStack.fullRefresh', function(event) {
|
||||
getData();
|
||||
if ($multi.is(':visible')) {
|
||||
getData();
|
||||
}
|
||||
});
|
||||
|
||||
$multi.bind('change select', function() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue