From 5e0287d93fc29df644bf256b45cb33a1d2dd4f37 Mon Sep 17 00:00:00 2001 From: ijdershem-jf Date: Sun, 11 Dec 2022 17:39:04 -0700 Subject: [PATCH] [9834] Fix red error highlighting on product category select label --- app/views/spree/admin/products/_primary_taxon_form.html.haml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/spree/admin/products/_primary_taxon_form.html.haml b/app/views/spree/admin/products/_primary_taxon_form.html.haml index b5b8369866..e24f84a6a2 100644 --- a/app/views/spree/admin/products/_primary_taxon_form.html.haml +++ b/app/views/spree/admin/products/_primary_taxon_form.html.haml @@ -1,5 +1,5 @@ = f.field_container :primary_taxon do - = f.label :primary_taxon_id, t('.product_category') + = f.label :primary_taxon, t('.product_category') %span.required * %br = f.collection_select(:primary_taxon_id, Spree::Taxon.order(:name), :id, :name, {:include_blank => true}, {:class => "select2 fullwidth"})