]> source.dussan.org Git - sonarqube.git/commitdiff
Small UI fixes
authorEvgeny Mandrikov <mandrikov@gmail.com>
Thu, 23 Jun 2011 11:23:07 +0000 (15:23 +0400)
committerEvgeny Mandrikov <mandrikov@gmail.com>
Thu, 23 Jun 2011 11:23:07 +0000 (15:23 +0400)
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_false_positive_form.html.erb
sonar-server/src/main/webapp/WEB-INF/app/views/reviews/_violation_false_positive_form.html.erb

index c173a77029610f1a73fe71355ed3967b1197ab7a..b4a0be8ac1117718f64466d0795e142ecd15ecec 100644 (file)
@@ -1,11 +1,20 @@
+<%
+   if params[:false_positive]=='true'
+     title = "Why is it a false-positive ?"
+     button = "Flag as false-positive"
+   else
+     title = "Why is it not a false-positive anymore ?"
+     button = "Unflag as false-positive"
+   end
+%>
 <form method="POST" action="violation_flag_as_false_positive">
   <input type="hidden" name="id" value="<%= params[:id] -%>"/>
   <% if params[:false_positive]=='true' -%>
     <input type="hidden" name="false_positive" value="true"/>
   <% end %>
-  <h3>Why is it a false-positive ?</h3>
+  <h3><%= title -%></h3>
   <textarea id="commentText" rows="8" name="comment" style="width: 100%" onkeyup="if (this.value=='') $('submit_btn').disabled='true'; else $('submit_btn').disabled='';"></textarea>
-  <%= submit_to_remote "submit_btn", "Flag as false-positive", :url => { :action => 'flag_as_false_positive' }, :html => { :id => "submit_btn", :disabled => "true" }, :update => 'review' -%>
+  <%= submit_to_remote "submit_btn", button, :url => { :action => 'flag_as_false_positive' }, :html => { :id => "submit_btn", :disabled => "true" }, :update => 'review' -%>
   &nbsp;
   <%= link_to_remote 'Cancel', :url => {:action => 'show', :id => params[:id]}, :update => 'review' -%>
 </form>
index d11e374e1e58f2a053654ea1ba8dbc24d0b3c9aa..3c4e89354a1a7a97d98a1738bd09474ec168ee7a 100644 (file)
@@ -6,7 +6,7 @@
      title = "Why is it not a false-positive anymore ?"
      button = "Unflag as false-positive"
    end
- %>
+%>
 <form method="POST" action="violation_flag_as_false_positive">
   <input type="hidden" name="id" value="<%= params[:id] -%>"/>
   <% if params[:false_positive]=='true' -%>