From 044f6131da64bd4f0cce8fe0231945570a36f668 Mon Sep 17 00:00:00 2001 From: Ahmed Ejaz Date: Thu, 19 Mar 2026 02:38:17 +0500 Subject: [PATCH] fix aria_label translations --- app/views/admin/products_v3/_filters.html.haml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/admin/products_v3/_filters.html.haml b/app/views/admin/products_v3/_filters.html.haml index 93e60182f8..bf82a02c72 100644 --- a/app/views/admin/products_v3/_filters.html.haml +++ b/app/views/admin/products_v3/_filters.html.haml @@ -10,7 +10,7 @@ .producers = label_tag :producer_id, t('.producers.label') = render(SearchableDropdownComponent.new(name: :producer_id, - aria_label: t('.producer_field_name'), + aria_label: t('.producers.label'), options: selected_option(producer_id, Enterprise), selected_option: producer_id, remote_url: admin_products_search_producers_url, @@ -19,7 +19,7 @@ .categories = label_tag :category_id, t('.categories.label') = render(SearchableDropdownComponent.new(name: :category_id, - aria_label: t('.category_field_name'), + aria_label: t('.categories.label'), options: selected_option(category_id, Spree::Taxon), selected_option: category_id, remote_url: admin_products_search_categories_url,