Skip to content

Commit 5159aa8

Browse files
Changes made on linter
1 parent 1d25a82 commit 5159aa8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

app/helpers/ui_helper.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ def _link_to(link, options = {}, properties = {})
174174
button_to link, properties.merge(class: klass, form_class: form_klass) do
175175
fa_icon icon, text: text
176176
end
177-
end
177+
end
178178
end
179179

180180
def _button_to(options = {}, properties = {})

app/views/admin/barcode_items/_barcode_item_row.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@
99
<%= link_to edit_admin_barcode_item_path(barcode_item_row), class: "btn btn-info btn-xs" do %>
1010
<i class="fa fa-edit"></i> Edit
1111
<% end %>
12-
<%= delete_button_to admin_barcode_item_path(barcode_item_row), { method: :delete, class: "btn btn-danger btn-xs", data: {confirm: confirm_delete_msg(barcode_item_row.item.name)} }%>
12+
<%= delete_button_to admin_barcode_item_path(barcode_item_row), { method: :delete, class: "btn btn-danger btn-xs", data: {confirm: confirm_delete_msg(barcode_item_row.item.name)} } %>
1313
</td>
1414
</tr>

app/views/partners/_form.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@
5353
<% if doc.persisted? %>
5454
<li class="attached-document d-flex justify-content-between align-items-center p-2 border rounded mb-2" data-document-id="<%= doc.signed_id %>">
5555
<%= link_to doc.blob.filename.to_s, rails_blob_path(doc), class: "font-weight-bold w-75 text-truncate" %>
56-
<%= f.hidden_field :documents, multiple: true, value: doc.signed_id %>
56+
<%= f.hidden_field :documents, multiple: true, value: doc.signed_id %>
5757
<%= f.button :button, formmethod: :delete, formaction: attachment_path(doc), class: "btn btn-danger btn-md", data: {disable_with: "Please wait..."} do
5858
fa_icon "trash", text: "Remove"
5959
end %>

0 commit comments

Comments
 (0)