From c4a6fd13398bbdbd4c86a9c13e80a5e05695cbd4 Mon Sep 17 00:00:00 2001 From: Tom Hughes Date: Sat, 20 Sep 2025 15:05:43 +0100 Subject: [PATCH] Render marker symbols for the embed view unconditionally The generated page is cached and some requests may need the markers while others don't so we always need to include them. Fixes #6045 --- app/views/export/embed.html.erb | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/views/export/embed.html.erb b/app/views/export/embed.html.erb index cae7dd22f..5c280b77d 100644 --- a/app/views/export/embed.html.erb +++ b/app/views/export/embed.html.erb @@ -8,9 +8,7 @@
- <% if params[:marker].present? %> - <%= render :partial => "layouts/markers", :locals => { :types => %w[dot] } %> - <% end %> + <%= render :partial => "layouts/markers", :locals => { :types => %w[dot] } %>
-- 2.39.5