Wrap the permission label with a <label> tag

Gives the user a larger target to toggle a permission.
This commit is contained in:
Edward Betts 2018-05-24 12:49:12 +01:00
parent 6b2dcfd3d8
commit 196ac7c0d5

View file

@ -12,7 +12,7 @@
<p><%= t '.allow_to' %></p>
<ul>
<% @token.client_application.permissions.each do |perm| %>
<li><%= check_box_tag perm.to_s, "yes", @token.read_attribute(perm) %><%= t ".#{perm}" %></li>
<li><%= check_box_tag perm.to_s, "yes", @token.read_attribute(perm) %><%= label_tag perm.to_s, t(".#{perm}") %></li>
<% end %>
</ul>
<p><%= submit_tag t(".grant_access") %></p>