mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-23 14:39:58 +03:00
Use data.value
This commit is contained in:
parent
ea03537271
commit
dcd562e123
|
@ -453,7 +453,9 @@ export default function (DOMNode: HTMLElement, options: Partial<Options> = {}) {
|
||||||
// the equivalent property of the oldData
|
// the equivalent property of the oldData
|
||||||
// also test whether the old data exists,
|
// also test whether the old data exists,
|
||||||
// to catch the entering elements!
|
// to catch the entering elements!
|
||||||
return !!this.__oldData__ && d.value !== this.__oldData__.value;
|
return (
|
||||||
|
!!this.__oldData__ && d.data.value !== this.__oldData__.data.value
|
||||||
|
);
|
||||||
})
|
})
|
||||||
.select('g')
|
.select('g')
|
||||||
.style('opacity', '0.3')
|
.style('opacity', '0.3')
|
||||||
|
|
Loading…
Reference in New Issue
Block a user