Files
openfoodnetwork/app/helpers/spree/admin/images_helper.rb
2023-06-16 21:23:44 +01:00

16 lines
279 B
Ruby

# frozen_string_literal: true
module Spree
module Admin
module ImagesHelper
def options_text_for(image)
if image.viewable.is_a?(Spree::Variant)
image.viewable.options_text
else
I18n.t(:all)
end
end
end
end
end