Skip to content

Commit adb27c4

Browse files
authored
Merge pull request #543 from RedisInsight/redisgraph-fix-relationships
[RedisGraph] Fix graph relationships
2 parents 61902f5 + 3184306 commit adb27c4

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)