mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-23 06:29:51 +03:00
Fix
This commit is contained in:
parent
107c5946fa
commit
6ffc5375cc
|
@ -432,15 +432,11 @@ export default function (
|
||||||
})
|
})
|
||||||
.style('fill', textStyleOptions.colors.default)
|
.style('fill', textStyleOptions.colors.default)
|
||||||
.style('cursor', 'pointer')
|
.style('cursor', 'pointer')
|
||||||
.on('mouseover', function mouseover(this: EventTarget) {
|
.on('mouseover', function mouseover() {
|
||||||
d3.select(this).style({
|
d3.select(this).style('fill', textStyleOptions.colors.hover);
|
||||||
fill: textStyleOptions.colors.hover,
|
|
||||||
});
|
|
||||||
})
|
})
|
||||||
.on('mouseout', function mouseout(this: EventTarget) {
|
.on('mouseout', function mouseout() {
|
||||||
d3.select(this).style({
|
d3.select(this).style('fill', textStyleOptions.colors.default);
|
||||||
fill: textStyleOptions.colors.default,
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
if (!tooltipOptions.disabled) {
|
if (!tooltipOptions.disabled) {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user