Skip to content

Commit 65065e4

Browse files
committed
Fix icon_tag bad class name [skip ci]
1 parent 0b0a4ac commit 65065e4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

app/views/admin/site_configs/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<tr>
1616
<td><%= key %></td>
1717
<td><%= t("setting.#{key}") %></td>
18-
<td class="opts"><%= link_to icon_tag("fa fa-pencil"), edit_admin_site_config_path(key) %></td>
18+
<td class="opts"><%= link_to icon_tag("pencil"), edit_admin_site_config_path(key) %></td>
1919
</tr>
2020
<% end %>
2121
</table>

app/views/notes/show.html.erb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
<%= @note.changes_count %> <%= t("notes.times_edit") %>
1111
<% if owner? @note %>
1212
<span class="opts pull-right">
13-
<%= link_to icon_tag("fa fa-pencil"), edit_note_path(@note), title: t("common.edit") %>
14-
<%= link_to icon_tag("fa fa-trash"), note_path(@note), 'data-confirm' => t("common.confirm_delete"), method: :delete, title: t("common.confirm_delete") %>
13+
<%= link_to icon_tag("pencil"), edit_note_path(@note), title: t("common.edit") %>
14+
<%= link_to icon_tag("trash"), note_path(@note), 'data-confirm' => t("common.confirm_delete"), method: :delete, title: t("common.confirm_delete") %>
1515
</span>
1616
<% end %>
1717
</div>

0 commit comments

Comments
 (0)