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