]> git.openstreetmap.org Git - rails.git/commitdiff
Merge remote-tracking branch 'upstream/pull/5477'
authorTom Hughes <tom@compton.nu>
Tue, 7 Jan 2025 08:42:45 +0000 (08:42 +0000)
committerTom Hughes <tom@compton.nu>
Tue, 7 Jan 2025 08:42:45 +0000 (08:42 +0000)
app/assets/javascripts/leaflet.map.js
test/system/browse_test.rb [new file with mode: 0644]

index 401a5d9099c8a1000b7ba77f1f7ac8e93b96e597..e0c2ee60b47fb0ddd5251ac520b3c8e234f8ebca 100644 (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;
             }
diff --git a/test/system/browse_test.rb b/test/system/browse_test.rb
new file mode 100644 (file)
index 0000000..15dc1cb
--- /dev/null
@@ -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