aboutsummaryrefslogtreecommitdiffstats
path: root/server
diff options
context:
space:
mode:
authorStas Vilchik <vilchiks@gmail.com>2014-12-10 20:31:53 +0100
committerStas Vilchik <vilchiks@gmail.com>2014-12-10 20:31:53 +0100
commitcd582e700b3ceda2de457733db6cd2417b5346c9 (patch)
treee7f85c3b771d9286e032313e1cdfc623a53ea36a /server
parent01624e779ab58c043edf1367dc1831bb5fa89b57 (diff)
downloadsonarqube-cd582e700b3ceda2de457733db6cd2417b5346c9.tar.gz
sonarqube-cd582e700b3ceda2de457733db6cd2417b5346c9.zip
Fix redirection from issues drilldown when a differential period is enabled
Diffstat (limited to 'server')
-rw-r--r--server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb8
1 files changed, 3 insertions, 5 deletions
diff --git a/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb b/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
index af206f654ca..047dfb5d328 100644
--- a/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
+++ b/server/sonar-web/src/main/webapp/WEB-INF/app/views/drilldown/issues.html.erb
@@ -20,10 +20,8 @@
if (config.severity) {
url = url + '|severities=' + config.severity;
}
- if (config.period) {
- url = url + '|createdAfter=' + config.period;
- }
- console.log(config);
- console.log(url);
+// if (config.period) {
+// url = url + '|createdAfter=' + config.period;
+// }
window.location = url;
</script>