From 3c138206bd8be677e56bfe7a5cb4d5e44fba4230 Mon Sep 17 00:00:00 2001 From: Marwin Hochfelsner <50826859+hlfan@users.noreply.github.com> Date: Sun, 8 Feb 2026 15:51:27 +0100 Subject: [PATCH] Fix syntax for tag.path attributes --- app/views/layouts/_markers.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/layouts/_markers.html.erb b/app/views/layouts/_markers.html.erb index 98c34231f..e2cefdaf1 100644 --- a/app/views/layouts/_markers.html.erb +++ b/app/views/layouts/_markers.html.erb @@ -24,7 +24,7 @@ } %> <% types.filter { |type| markers[type] }.each do |type| %> - <%= tag.path :id => "#{type}-path", :attributes => markers[type] %> + <%= tag.path :id => "#{type}-path", **markers[type] %> -- 2.39.5