aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@gmail.com>2013-02-20 18:34:15 +0100
committerJulien Lancelot <julien.lancelot@gmail.com>2013-02-20 18:34:31 +0100
commit02b6ac319d850a24546207f0d406c63fcfeea38c (patch)
tree48bc90e8eff596a87a94e923b86869b4b97c2009
parent2a8b662e1e3b29289040c75a5bc9890d4e4a4bcc (diff)
downloadsonarqube-02b6ac319d850a24546207f0d406c63fcfeea38c.tar.gz
sonarqube-02b6ac319d850a24546207f0d406c63fcfeea38c.zip
Fix issue when canceling creation of review
-rw-r--r--sonar-server/src/main/webapp/javascripts/resource.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-server/src/main/webapp/javascripts/resource.js b/sonar-server/src/main/webapp/javascripts/resource.js
index de24fde7194..bc1834cb4ea 100644
--- a/sonar-server/src/main/webapp/javascripts/resource.js
+++ b/sonar-server/src/main/webapp/javascripts/resource.js
@@ -176,7 +176,7 @@ function sVF(elt, resource, line, gray_colspan, white_colspan) {
// hide review form
function hVF(elt, line) {
- var row = $j(elt).closest('.createViolationRow'+ line);
+ var row = $j(elt).closest('#createViolationRow'+ line);
if (row.length) {
row.remove();
}