Skip to content

Commit baf1d7d

Browse files
committed
For 5372AlignmentNudges fixed linting issue in distribution row
1 parent 20c65d1 commit baf1d7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/views/distributions/_distribution_row.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<td><%= distribution_row.id %></td>
33
<td><%= distribution_row.partner.name %></td>
44
<td class="date text-left"><%= distribution_row.created_at.strftime("%m/%d/%Y") %></td>
5-
<td class="date text-left""><%= (distribution_row.issued_at.presence || distribution_row.created_at).strftime("%m/%d/%Y") %></td>
5+
<td class="date text-left"><%= (distribution_row.issued_at.presence || distribution_row.created_at).strftime("%m/%d/%Y") %></td>
66
<td><%= distribution_row.storage_location.name %></td>
77

88
<td class="numeric"><%= @distribution_totals[distribution_row.id].quantity %></td>

0 commit comments

Comments
 (0)