Skip to content

Commit

Permalink
fix(map): when map container overflows, connections were not being re…
Browse files Browse the repository at this point in the history
…ndered past the default viewport
  • Loading branch information
updraft0 committed Jun 11, 2024
1 parent aafd41a commit e5eadbc
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions ui/src/main/scala/controltower/page/map/view/MapView.scala
Original file line number Diff line number Diff line change
Expand Up @@ -166,10 +166,11 @@ private class MapView(
idAttr := "map-inner",
children.command <-- systemNodes,
svg.svg(
svg.cls := "connection-container",
svg.style := "position: absolute; left: 0px; top: 0px;",
svg.height := "100%",
svg.width := "100%",
svg.cls := "connection-container",
svg.style := "position: absolute; left: 0px; top: 0px;",
svg.height := "100%",
svg.width := "100%",
svg.overflow := "visible",
children.command <-- connectionNodes,
connectionInProgress.view
)
Expand Down

0 comments on commit e5eadbc

Please sign in to comment.