From 4ea50799b07d28a7fcff95d1b1e84f5ce233630a Mon Sep 17 00:00:00 2001 From: Steve Taylor Date: Thu, 20 Jun 2024 11:32:35 -0700 Subject: [PATCH] Remove aria-hidden from visible submit button --- .../blacklight_range_limit/range_form_component.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/blacklight_range_limit/range_form_component.html.erb b/app/components/blacklight_range_limit/range_form_component.html.erb index 2ad2ae2f..8b97f43e 100644 --- a/app/components/blacklight_range_limit/range_form_component.html.erb +++ b/app/components/blacklight_range_limit/range_form_component.html.erb @@ -7,6 +7,6 @@
<%= submit_tag t('blacklight.range_limit.submit_limit'), class: @classes[:submit], name: nil %>
- <%= submit_tag t('blacklight.range_limit.submit_limit'), class: @classes[:submit] + " sr-only", "aria-hidden": "true", name: nil %> + <%= submit_tag t('blacklight.range_limit.submit_limit'), class: @classes[:submit] + " sr-only", name: nil %> <% end %>