mirror of
https://github.com/drawdb-io/drawdb.git
synced 2025-09-20 14:34:55 +00:00
Fix relationship coming over table
This commit is contained in:
@@ -103,7 +103,15 @@ function Thumbnail({ diagram, i }) {
|
||||
{diagram.relationships?.map((e, i) => (
|
||||
<path
|
||||
key={i}
|
||||
d={calcPath(e.startX, e.endX, e.startY, e.endY, zoom)}
|
||||
d={calcPath(
|
||||
e.startX,
|
||||
e.endX,
|
||||
e.startY,
|
||||
e.endY,
|
||||
e.startFieldId,
|
||||
e.endFieldId,
|
||||
zoom
|
||||
)}
|
||||
fill="none"
|
||||
strokeWidth={1}
|
||||
stroke="gray"
|
||||
|
Reference in New Issue
Block a user