Skip to content

Commit 3184306

Browse files
committed
Fix graph relationships
1 parent 61902f5 commit 3184306

File tree

1 file changed

+1
-1
lines changed
  • redisinsight/ui/src/packages/redisgraph/src

1 file changed

+1
-1
lines changed

redisinsight/ui/src/packages/redisgraph/src/graphd3.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1354,7 +1354,7 @@ function GraphD3(_selector: HTMLDivElement, _options: any): IGraphD3 {
13541354
(() => {
13551355
for (let i = 0; i < nodePair.relationships.length; i++) {
13561356
let ref
1357-
relationship = nodePair.relationships[i]
1357+
const relationship = nodePair.relationships[i]
13581358
const nodeRadius = options.nodeRadius
13591359
const shaftWidth = options.relationshipWidth
13601360
const headWidth = options.arrowSize

0 commit comments

Comments
 (0)