diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2015-06-03 16:25:37 +0200 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2015-06-03 16:25:44 +0200 |
commit | 35f206a6cefc849aa105769c2545d30257188de4 (patch) | |
tree | 413cbbebec56d88ff4b6c0a696ec788ed859a52b /server/sonar-web/src/main/js/components/common | |
parent | a41bfb7f91181c67f37124fefc7d6cb76c3399ad (diff) | |
download | sonarqube-35f206a6cefc849aa105769c2545d30257188de4.tar.gz sonarqube-35f206a6cefc849aa105769c2545d30257188de4.zip |
explicitly set selected=all when search from select list
Diffstat (limited to 'server/sonar-web/src/main/js/components/common')
-rw-r--r-- | server/sonar-web/src/main/js/components/common/select-list.js | 1 |
1 files changed, 1 insertions, 0 deletions
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, |