From ec103daf26445aa08b7a22cb2a9e367efa0f37d4 Mon Sep 17 00:00:00 2001 From: Julien Lancelot Date: Tue, 13 Aug 2013 17:28:23 +0200 Subject: [PATCH] SONAR-4571 Both Bulk Change and Component Viewer are displayed in Issues Drilldown --- sonar-server/src/main/webapp/javascripts/application.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sonar-server/src/main/webapp/javascripts/application.js b/sonar-server/src/main/webapp/javascripts/application.js index 3f687bde1a4..773170b1a38 100644 --- a/sonar-server/src/main/webapp/javascripts/application.js +++ b/sonar-server/src/main/webapp/javascripts/application.js @@ -395,6 +395,9 @@ function openAccordionItem(url, elt, updateCurrentElement) { } } else { $j("#accordion-panel").height('auto'); + + // Current element is not in a working view, remove again all working views to purge elements that could be added just before this one + $j('.'+ htmlClass).remove(); } if (updateCurrentElement) { -- 2.39.5