We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4fe30ed commit 4678ca9Copy full SHA for 4678ca9
src/Link/index.js
@@ -56,12 +56,10 @@ export default class Link extends React.PureComponent {
56
}
57
58
render() {
59
- const { transitions } = this.props;
60
return (
61
<path
62
ref={(l) => { this.link = l; }}
63
className="linkBase"
64
- style={transitions.enabled ? undefined : { opacity: 1 }}
65
d={this.expandPath()}
66
/>
67
);
src/Node/index.js
@@ -85,7 +85,6 @@ export default class Node extends React.Component {
85
<g
86
id={nodeData.id}
87
ref={(n) => { this.node = n; }}
88
89
className={nodeData._children ? 'nodeBase' : 'leafNodeBase'}
90
transform={transform}
91
onClick={this.handleClick}
0 commit comments