Skip to content

Commit 3178121

Browse files
committed
Fix networkframe edge content
1 parent abc27c8 commit 3178121

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/annotationRules/networkframeRules.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const htmlFrameHoverRule = ({
3434
let content = d.edge ? (
3535
<SpanOrDiv span={useSpans} className="tooltip-content">
3636
<p key="html-annotation-content-1">
37-
{(d.source || d.edge.source).id} to {(d.source || d.edge.source).id}
37+
{(d.source || d.edge.source).id} to {(d.target || d.edge.target).id}
3838
</p>
3939
</SpanOrDiv>
4040
) : (

0 commit comments

Comments
 (0)