From 6b1da42221832b211c2ae4ae8a95f123a18d4e69 Mon Sep 17 00:00:00 2001 From: Brian Federle Date: Fri, 26 Apr 2013 15:32:15 -0700 Subject: [PATCH] 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. --- ui/scripts/ui/widgets/detailView.js | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ui/scripts/ui/widgets/detailView.js b/ui/scripts/ui/widgets/detailView.js index 122953a9e29..a721a44ec05 100644 --- a/ui/scripts/ui/widgets/detailView.js +++ b/ui/scripts/ui/widgets/detailView.js @@ -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); + } } }