Skip to content

Commit 70cdded

Browse files
Herb installed and fixed 3 html issues detected by it
1 parent de763bc commit 70cdded

File tree

5 files changed

+12
-2
lines changed

5 files changed

+12
-2
lines changed

rails_application/Gemfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ gem 'arbre'
1919

2020
group :development do
2121
gem "listen", "~> 3.3"
22+
gem "herb"
2223
end
2324

2425
group :development, :test do

rails_application/Gemfile.lock

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,14 @@ GEM
135135
ffi (1.15.5)
136136
globalid (1.2.1)
137137
activesupport (>= 6.1)
138+
herb (0.7.3-aarch64-linux-gnu)
139+
herb (0.7.3-aarch64-linux-musl)
140+
herb (0.7.3-arm-linux-gnu)
141+
herb (0.7.3-arm-linux-musl)
142+
herb (0.7.3-arm64-darwin)
143+
herb (0.7.3-x86_64-darwin)
144+
herb (0.7.3-x86_64-linux-gnu)
145+
herb (0.7.3-x86_64-linux-musl)
138146
honeybadger (5.29.1)
139147
logger
140148
ostruct
@@ -363,6 +371,7 @@ DEPENDENCIES
363371
bootsnap (>= 1.9.2)
364372
byebug
365373
dotenv-rails
374+
herb
366375
honeybadger
367376
importmap-rails (~> 1.1)
368377
infra!

rails_application/app/views/available_vat_rates/index.html.erb

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@
2727
<%= f.hidden_field :vat_rate_code, value: available_vat_rate.code %>
2828
<%= f.submit 'Delete' %>
2929
<% end %>
30+
</td>
3031
</tr>
3132
<% end %>
3233
</tbody>

rails_application/app/views/products/show.html.erb

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,5 @@
3939
valid_since: entry[:valid_since] }
4040
%>
4141
<% end %>
42-
</dt>
4342
</dl>
4443
<% end %>

rails_application/app/views/shipments/index.html.erb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<tr class="border-t">
1717
<td class="py-2"><%= link_to shipment.order.number, order_path(shipment.order.uid), class: "text-blue-500 hover:underline" %></td>
1818
<td class="py-2"><%= shipment.full_address %></td>
19-
<td class="py-2"><%= link_to "Show Shipment", shipment_path(shipment), class: "text-blue-500 hover:underline" %>
19+
<td class="py-2"><%= link_to "Show Shipment", shipment_path(shipment), class: "text-blue-500 hover:underline" %></td>
2020
</tr>
2121
<% end %>
2222
</tbody>

0 commit comments

Comments
 (0)