Skip to content

Commit 5ec2361

Browse files
chore(deps): lock file maintenance (#1325)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
1 parent 762a0c5 commit 5ec2361

File tree

2 files changed

+510
-656
lines changed

2 files changed

+510
-656
lines changed

packages/d3-state-visualizer/src/charts/tree/tree.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
384384
.style('fill-opacity', 0)
385385
.text((d) => d.data.name)
386386
.on('click', (_, datum) => {
387-
onClickText(datum);
387+
onClickText(datum as unknown as HierarchyPointNode<Node>);
388388
});
389389

390390
const nodeEnterAndUpdate = nodeEnter.merge(node);

0 commit comments

Comments
 (0)