Wrap the permission label with a <label> tag
Gives the user a larger target to toggle a permission.
This commit is contained in:
parent
6b2dcfd3d8
commit
196ac7c0d5
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@
|
||||||
<p><%= t '.allow_to' %></p>
|
<p><%= t '.allow_to' %></p>
|
||||||
<ul>
|
<ul>
|
||||||
<% @token.client_application.permissions.each do |perm| %>
|
<% @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 %>
|
<% end %>
|
||||||
</ul>
|
</ul>
|
||||||
<p><%= submit_tag t(".grant_access") %></p>
|
<p><%= submit_tag t(".grant_access") %></p>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue