diff --git a/app/assets/stylesheets/popup.css b/app/assets/stylesheets/popup.css index b3b8172be..94c6b9d60 100644 --- a/app/assets/stylesheets/popup.css +++ b/app/assets/stylesheets/popup.css @@ -138,7 +138,7 @@ padding: var(--inline-space-half) var(--popup-item-padding-inline); text-align: start; - .icon.checked { + .icon.current { display: none; .popup__item--current & { diff --git a/app/helpers/filters_helper.rb b/app/helpers/filters_helper.rb index 1f89eb390..13994f1eb 100644 --- a/app/helpers/filters_helper.rb +++ b/app/helpers/filters_helper.rb @@ -21,7 +21,7 @@ module FiltersHelper concat icon_tag(icon, class: "popup__icon") concat(link_to(path, link_to_params.merge(class: "popup__btn btn")) do concat tag.span(label, class: "overflow-ellipsis") - concat icon_tag("check", class: "checked flex-item-justify-end", "aria-hidden": true) + concat icon_tag("check", class: "current flex-item-justify-end", "aria-hidden": true) end) end end