Fix two icon_tag goofs

This commit is contained in:
Andy Smith
2025-04-04 10:36:36 -05:00
parent a41ee80e91
commit 1921c062f2
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -10,7 +10,7 @@
<span class="color-picker__color">
<label class="btn btn--circle" style="--btn-background: <%= color %>" title="<%= color %>">
<%= form.radio_button :color, color %>
<%= icon_tag "check.svg", class: "checked" %>
<%= icon_tag "check", class: "checked" %>
<span class="for-screen-reader"><%= color %></span>
</label>
</span>
+1 -1
View File
@@ -3,7 +3,7 @@
<form method="dialog" class="lightbox__btn">
<button class="btn fill-white" title="Close (esc)">
<%= icon_tag "remove.svg" %>
<%= icon_tag "remove" %>
<span class="for-screen-reader">Close image viewer (esc)</span>
</button>
</form>