Skip to content
Snippets Groups Projects
Commit e4216fe2 authored by Arnaud Levy's avatar Arnaud Levy
Browse files

Fix organizations logo

parent 8d47211d
No related branches found
No related tags found
No related merge requests found
......@@ -24,8 +24,15 @@ module Admin::OsunyHelper
def osuny_thumbnail(object, large: false, cropped: true, classes: '')
return if object.nil?
image = object.respond_to?(:featured_image) ? object.featured_image
: nil
if object.respond_to?(:logo)
# For organizations
image = object.logo
elsif object.respond_to?(:featured_image)
# For all other objects
image = object.featured_image
else
image = nil
end
render partial: "admin/application/components/thumbnail",
locals: {
image: image,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment