Link alt styles to the outfit editor, rather than to the big image URL

This commit is contained in:
Emi Matchu 2024-10-11 15:40:20 -07:00
parent 1626f0706c
commit be5ad31a1d

View file

@ -3,7 +3,11 @@ module AltStylesHelper
if support_staff?
edit_alt_style_path alt_style
else
alt_style.preview_image_url
wardrobe_path(
species: alt_style.species_id,
color: alt_style.color_id,
style: alt_style.id,
)
end
end
end