diff options
author | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-20 18:34:15 +0100 |
---|---|---|
committer | Julien Lancelot <julien.lancelot@gmail.com> | 2013-02-20 18:34:31 +0100 |
commit | 02b6ac319d850a24546207f0d406c63fcfeea38c (patch) | |
tree | 48bc90e8eff596a87a94e923b86869b4b97c2009 | |
parent | 2a8b662e1e3b29289040c75a5bc9890d4e4a4bcc (diff) | |
download | sonarqube-02b6ac319d850a24546207f0d406c63fcfeea38c.tar.gz sonarqube-02b6ac319d850a24546207f0d406c63fcfeea38c.zip |
Fix issue when canceling creation of review
-rw-r--r-- | sonar-server/src/main/webapp/javascripts/resource.js | 2 |
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(); } |