From: Stas Vilchik Date: Wed, 3 Jun 2015 14:25:37 +0000 (+0200) Subject: explicitly set selected=all when search from select list X-Git-Tag: 5.2-RC1~1647 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=35f206a6cefc849aa105769c2545d30257188de4;p=sonarqube.git explicitly set selected=all when search from select list --- diff --git a/server/sonar-web/src/main/js/components/common/select-list.js b/server/sonar-web/src/main/js/components/common/select-list.js index 5716ed2fa10..ff6bf762248 100644 --- a/server/sonar-web/src/main/js/components/common/select-list.js +++ b/server/sonar-web/src/main/js/components/common/select-list.js @@ -340,6 +340,7 @@ define(function () { this.currentFilter = 'all'; data[this.settings.queryParam] = query; + data.selected = 'all'; this.collection.fetch({ url: this.settings.searchUrl, reset: true,