diff --git a/app/views/finders/all_content_finder_facets/_date_facet.html.erb b/app/views/finders/all_content_finder_facets/_date_facet.html.erb index 574af66cb..92ffa9ecd 100644 --- a/app/views/finders/all_content_finder_facets/_date_facet.html.erb +++ b/app/views/finders/all_content_finder_facets/_date_facet.html.erb @@ -1,6 +1,7 @@ <%= render "components/filter_section", { heading_text: date_facet.name, visually_hidden_heading_prefix: "Filter by", + status_text: date_facet.status_text, id: "facet_date_#{date_facet.key}", index_section: index, index_section_count: count, diff --git a/app/views/finders/all_content_finder_facets/_option_select_facet.html.erb b/app/views/finders/all_content_finder_facets/_option_select_facet.html.erb index 4b6ab519f..f65a7ab22 100644 --- a/app/views/finders/all_content_finder_facets/_option_select_facet.html.erb +++ b/app/views/finders/all_content_finder_facets/_option_select_facet.html.erb @@ -3,6 +3,7 @@ <%= render "components/filter_section", { heading_text: option_select_facet.name, visually_hidden_heading_prefix: "Filter by", + status_text: option_select_facet.status_text, id: "facet_option_select_#{option_select_facet.key}", index_section: index, index_section_count: count, diff --git a/app/views/finders/all_content_finder_facets/_sort_facet.html.erb b/app/views/finders/all_content_finder_facets/_sort_facet.html.erb index 35fe74417..252895b74 100644 --- a/app/views/finders/all_content_finder_facets/_sort_facet.html.erb +++ b/app/views/finders/all_content_finder_facets/_sort_facet.html.erb @@ -1,5 +1,6 @@ <%= render "components/filter_section", { heading_text: sort_facet.name, + status_text: sort_facet.status_text, id: "facet_sort", index_section: index, index_section_count: count, diff --git a/app/views/finders/all_content_finder_facets/_taxon_facet.html.erb b/app/views/finders/all_content_finder_facets/_taxon_facet.html.erb index 66d9e00f4..39443bd5f 100644 --- a/app/views/finders/all_content_finder_facets/_taxon_facet.html.erb +++ b/app/views/finders/all_content_finder_facets/_taxon_facet.html.erb @@ -1,6 +1,7 @@ <%= render "components/filter_section", { heading_text: taxon_facet.name, visually_hidden_heading_prefix: "Filter by", + status_text: taxon_facet.status_text, id: "facet_taxon_#{taxon_facet.key}", index_section: index, index_section_count: count,