Skip to content

Commit

Permalink
Use Remix icons if Solidus' admin_updated_navbar is enabled
Browse files Browse the repository at this point in the history
Solidus 2.4 introduced a new admin navbar with new icons
that can be enabled in the settings. Adopt to that.
  • Loading branch information
tvdeyen committed Nov 10, 2023
1 parent f6a17ab commit 6d82b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
if item.respond_to?(:children)
Spree::BackendConfiguration::MenuItem.new(
label: :promotions,
icon: "bullhorn",
icon: config.admin_updated_navbar ? "ri-megaphone-line" : "bullhorn",
condition: -> { can?(:admin, SolidusFriendlyPromotions::Promotion) },
url: -> { SolidusFriendlyPromotions::Engine.routes.url_helpers.admin_promotions_path },
data_hook: :admin_promotion_sub_tabs,
Expand Down

0 comments on commit 6d82b29

Please sign in to comment.