diff --git a/CHANGELOG.md b/CHANGELOG.md index 90e1f1f842..308327c86f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,7 @@ # Changelog +* Adaptations for new icon font + ## 1.0.1.pre2 * `#2459` Squashed old migrations diff --git a/app/views/principal_roles/_show_table_row.html.erb b/app/views/principal_roles/_show_table_row.html.erb index 20d1a03bc5..73d11f2261 100644 --- a/app/views/principal_roles/_show_table_row.html.erb +++ b/app/views/principal_roles/_show_table_row.html.erb @@ -22,7 +22,7 @@ See doc/COPYRIGHT.rdoc for more details. <%= link_to_function l(:button_edit), "return false;", :class => 'icon icon-edit' %> <%end%> <%= link_to_remote(l(:button_delete), { :url => principal_role_url(principal_role.id), - :method => :delete }, - :class => 'icon icon-del') %> + :method => :delete }, + :class => 'icon icon-delete') %> diff --git a/app/views/principal_roles/index.html.erb b/app/views/principal_roles/index.html.erb index 50edaebb89..0aec2bf8f2 100644 --- a/app/views/principal_roles/index.html.erb +++ b/app/views/principal_roles/index.html.erb @@ -35,7 +35,7 @@ See doc/COPYRIGHT.rdoc for more details. <%= link_to(l(:button_delete), principal_role_path(role), :method => :delete, :confirm => l(:text_are_you_sure), - :class => 'icon icon-del')%> + :class => 'icon icon-delete')%> <% end %> diff --git a/app/views/roles/index.html.erb b/app/views/roles/index.html.erb index 61a9173973..2c3f70580a 100644 --- a/app/views/roles/index.html.erb +++ b/app/views/roles/index.html.erb @@ -43,7 +43,7 @@ See doc/COPYRIGHT.rdoc for more details. <%= link_to(l(:button_delete), role_path(role), :method => :delete, :confirm => l(:text_are_you_sure), - :class => 'icon icon-del') unless role.builtin? %> + :class => 'icon icon-delete') unless role.builtin? %> <% end %>