Skip to content

Commit

Permalink
fix syntax error in ERB (#883)
Browse files Browse the repository at this point in the history
  • Loading branch information
dunn authored Nov 7, 2023
1 parent 657c6fe commit a310e51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
bulkrax.importers_path,
title: t('bulkrax.admin.sidebar.importers'),
class: "nav-link",
onclick: "dontChangeAccordion(event);")
onclick: "dontChangeAccordion(event);"
) do %>
<span class="fa fa-cloud-upload" aria-hidden="true"></span> <span class="sidebar-action-text"><%= t('bulkrax.admin.sidebar.importers') %></span>
<% end %>
Expand All @@ -13,7 +13,7 @@
bulkrax.exporters_path,
title: t('bulkrax.admin.sidebar.exporters'),
class: "nav-link",
onclick: "dontChangeAccordion(event);")
onclick: "dontChangeAccordion(event);"
) do %>
<span class="fa fa-cloud-download" aria-hidden="true"></span> <span class="sidebar-action-text"><%= t('bulkrax.admin.sidebar.exporters') %></span>
<% end %>
Expand Down

0 comments on commit a310e51

Please sign in to comment.