mirror of https://github.com/apache/cloudstack.git
Detail view, multi-group actions: Prevent refresh of all tabs
Prevent call to updateTabContent, which will switch the detail view off the current tab on action complete.
This commit is contained in:
parent
9db639c5ae
commit
6b1da42221
|
|
@ -199,7 +199,11 @@
|
|||
$loading.remove();
|
||||
|
||||
if (!noRefresh && !viewArgs.compact) {
|
||||
updateTabContent(args.data? args.data : args2.data);
|
||||
if (isMultiple) {
|
||||
$detailView.find('.refresh').click();
|
||||
} else {
|
||||
updateTabContent(args.data? args.data : args2.data);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue