diff options
-rw-r--r-- | app/views/groups/_users.html.erb | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/app/views/groups/_users.html.erb b/app/views/groups/_users.html.erb index 310777dee..3d4820f59 100644 --- a/app/views/groups/_users.html.erb +++ b/app/views/groups/_users.html.erb @@ -10,7 +10,12 @@ <tr id="user-<%= user.id %>" class="<%= cycle 'odd', 'even' %>"> <td class="user"><%= link_to_user user %></td> <td class="buttons"> - <%= link_to_remote l(:button_delete), { :url => group_user_path(@group, :user_id => user), :method => :delete }, :class => 'icon icon-del' %> + <%= link_to_remote( + l(:button_delete), + { :url => group_user_path(@group, :user_id => user), + :method => :delete }, + :class => 'icon icon-del' + ) %> </td> </tr> <% end %> |