diff options
author | Fabrice Bellingard <bellingard@gmail.com> | 2011-05-19 17:02:30 +0200 |
---|---|---|
committer | Fabrice Bellingard <bellingard@gmail.com> | 2011-05-19 17:02:30 +0200 |
commit | 004582cf071ce1b2eb4a131a9f29104e13b29944 (patch) | |
tree | e3bda692db4c42a8e6986da1af114a50b011a12c | |
parent | c04e9137357c3b2be3e0b2c12a434338f05b673f (diff) | |
download | sonarqube-004582cf071ce1b2eb4a131a9f29104e13b29944.tar.gz sonarqube-004582cf071ce1b2eb4a131a9f29104e13b29944.zip |
SONAR-2426 Allow to directly assign a violation to users
Fix "Assignee" label alignment (noticed on Chrome).
-rw-r--r-- | sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_comment_form.html.erb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_comment_form.html.erb b/sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_comment_form.html.erb index c178620b5ba..7c6a8d24352 100644 --- a/sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_comment_form.html.erb +++ b/sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_comment_form.html.erb @@ -17,8 +17,8 @@ <%= link_to_remote 'Cancel', :url => {:action => 'display_violation', :id => params[:id]}, :update => 'vId' + params[:id] -%> <% if @violation.review.nil? || @violation.review.comments.size==0 %> - - Assignee: + + <span>Assignee:</span> <%= select_tag "assignee_id", options_for_select(@user_options, current_user.id.to_s) %> <% end %> </td> |