diff options
author | Simon Brandhof <simon.brandhof@gmail.com> | 2012-06-01 17:28:59 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@gmail.com> | 2012-06-01 17:31:44 +0200 |
commit | 7289e004f966f833c9ee199a35e90e0af94296ac (patch) | |
tree | 731a7e750b949b6cbff80150932426c67aacf99d /plugins/sonar-core-plugin | |
parent | 4dd1285dcd75fef97a0c267e2efee68ad076d582 (diff) | |
download | sonarqube-7289e004f966f833c9ee199a35e90e0af94296ac.tar.gz sonarqube-7289e004f966f833c9ee199a35e90e0af94296ac.zip |
SONAR-3537 Improve performances of the treemap filter
Diffstat (limited to 'plugins/sonar-core-plugin')
-rw-r--r-- | plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/filter.html.erb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/filter.html.erb b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/filter.html.erb index dae497a9a17..76bc1efe49b 100644 --- a/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/filter.html.erb +++ b/plugins/sonar-core-plugin/src/main/resources/org/sonar/plugins/core/widgets/filter.html.erb @@ -1,6 +1,6 @@ <% @filter=::Filter.find(:first, :conditions => {:kee => widget_properties['filter']}) - @filter_context=Filters.execute(@filter, self, params) + @filter_context=Filters.execute(@filter, self, params) unless @filter.ajax_loading? %> <%= render :partial => "filters/#{@filter.default_view}", :locals => {:edit_mode => false, :widget => widget} %> |