]> git.openstreetmap.org Git - rails.git/blobdiff - app/helpers/social_share_button_helper.rb
Test share textarea not to leak into note text on hiding resolved notes
[rails.git] / app / helpers / social_share_button_helper.rb
index 90618a9245662a3975fee24f114f06ddd963d170..da49347c3054a56f32a063e54cb44faf84bc2e79 100644 (file)
@@ -16,7 +16,7 @@ module SocialShareButtonHelper
     tag.div(
       :class => "social-share-button d-flex gap-1 align-items-end flex-wrap mb-3"
     ) do
-      SOCIAL_SHARE_CONFIG.map do |site, icon|
+      safe_join(SOCIAL_SHARE_CONFIG.map do |site, icon|
         link_options = {
           :rel => "nofollow",
           :class => "ssb-icon rounded-circle",
@@ -27,7 +27,7 @@ module SocialShareButtonHelper
         link_to generate_share_url(site, title, url), link_options do
           image_tag(icon, :alt => I18n.t("application.share.#{site}.alt"), :size => 28)
         end
-      end.join.html_safe
+      end, "\n")
     end
   end