Merge remote-tracking branch 'upstream/pull/5477'

This commit is contained in:
Tom Hughes 2025-01-07 08:42:45 +00:00
commit 1ca2c2837e
2 changed files with 14 additions and 1 deletions

View file

@ -316,7 +316,7 @@ L.OSM.Map = L.Map.extend({
if (object.type === "node") {
return true;
} else if (object.type === "relation") {
if (relationNodes[node.id]) return true;
return Boolean(relationNodes[node.id]);
} else {
return false;
}

View file

@ -0,0 +1,13 @@
require "application_system_test_case"
class BrowseTest < ApplicationSystemTestCase
test "relation member nodes should be visible on the map when viewing relations" do
relation = create(:relation)
node = create(:node)
create(:relation_member, :relation => relation, :member => node)
visit relation_path(relation)
assert_selector "#map .leaflet-overlay-pane path"
end
end