Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/pull/5477'
Browse files Browse the repository at this point in the history
  • Loading branch information
tomhughes committed Jan 7, 2025
2 parents 70012ab + 937d461 commit 1ca2c28
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
2 changes: 1 addition & 1 deletion app/assets/javascripts/leaflet.map.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down
13 changes: 13 additions & 0 deletions test/system/browse_test.rb
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 1ca2c28

Please sign in to comment.