diff options
author | Stas Vilchik <vilchiks@gmail.com> | 2014-07-18 10:18:46 +0600 |
---|---|---|
committer | Stas Vilchik <vilchiks@gmail.com> | 2014-07-18 10:18:46 +0600 |
commit | 5dec3e20abd053bab174c985cc7c6d81ec29966d (patch) | |
tree | 9cae2cc473b4825445533bdd48945b4fafb4478c /server/sonar-web/src/main | |
parent | ad032a40dea6356a0701664ae99ab089ae95e729 (diff) | |
download | sonarqube-5dec3e20abd053bab174c985cc7c6d81ec29966d.tar.gz sonarqube-5dec3e20abd053bab174c985cc7c6d81ec29966d.zip |
SONAR-5209 Fix bug with duplications on the issues page
Diffstat (limited to 'server/sonar-web/src/main')
-rw-r--r-- | server/sonar-web/src/main/js/issues/extra.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/server/sonar-web/src/main/js/issues/extra.js b/server/sonar-web/src/main/js/issues/extra.js index 22aff79d142..93dd15f7b79 100644 --- a/server/sonar-web/src/main/js/issues/extra.js +++ b/server/sonar-web/src/main/js/issues/extra.js @@ -163,6 +163,7 @@ define( componentViewer.settings.set('issues', false); componentViewer.open(that.model.get('component')); componentViewer.on('loaded', function() { + componentViewer.off('loaded'); componentViewer.showIssues(false, that.model.toJSON()); }); }; |