mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-23 14:39:58 +03:00
Update
This commit is contained in:
parent
be71309bc3
commit
bdf076030a
|
@ -355,8 +355,11 @@ export default function (
|
||||||
// path generator for links
|
// path generator for links
|
||||||
const linkHorizontal = d3
|
const linkHorizontal = d3
|
||||||
.linkHorizontal<
|
.linkHorizontal<
|
||||||
{ source: NodePosition; target: NodePosition },
|
{
|
||||||
NodePosition
|
source: { x: number; y: number };
|
||||||
|
target: { x: number; y: number };
|
||||||
|
},
|
||||||
|
{ x: number; y: number }
|
||||||
>()
|
>()
|
||||||
.x((d) => d.x)
|
.x((d) => d.x)
|
||||||
.y((d) => d.y);
|
.y((d) => d.y);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user