mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-12 23:27:48 +00:00
16 lines
279 B
Ruby
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
|