Skip to content

Commit

Permalink
lint fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
dorner committed Feb 16, 2024
1 parent 7fe1e32 commit abf232a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/views/events/_event_row.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<td>
<% event.data.items.each do |entry| %>
<%= link_to items.find { |i| i.id == entry.item_id}.name, item_path(entry.item_id) %>:
<%= entry.from_storage_location == from_loc ? entry.quantity : -entry.quantity %><br/>
<%= entry.from_storage_location == from_loc ? entry.quantity : -entry.quantity %><br>
<% end %>
</td>
</tr>
Expand Down
2 changes: 1 addition & 1 deletion app/views/events/_snapshot_event_row.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<td>
<% loc.items.values.each do |entry| %>
<%= link_to items.find { |i| i.id == entry.item_id}.name, item_path(entry.item_id) %>:
<%= entry.quantity %><br/>
<%= entry.quantity %><br>
<% end %>
</td>
</tr>
Expand Down

0 comments on commit abf232a

Please sign in to comment.