mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 08:30:02 +03:00
Fix build
This commit is contained in:
parent
6a8ab006ed
commit
10c3fae5ae
|
@ -85,7 +85,11 @@ export default class LogMonitorEntry<
|
||||||
) => ({
|
) => ({
|
||||||
style: {
|
style: {
|
||||||
...style,
|
...style,
|
||||||
backgroundColor: dataIsEqual(data, previousData, keyPath)
|
backgroundColor: dataIsEqual(
|
||||||
|
data,
|
||||||
|
previousData,
|
||||||
|
keyPath as (string | number)[]
|
||||||
|
)
|
||||||
? 'transparent'
|
? 'transparent'
|
||||||
: this.props.theme.base01,
|
: this.props.theme.base01,
|
||||||
},
|
},
|
||||||
|
@ -93,7 +97,7 @@ export default class LogMonitorEntry<
|
||||||
const getNestedNodeStyle: StylingValue = ({ style }, keyPath) => ({
|
const getNestedNodeStyle: StylingValue = ({ style }, keyPath) => ({
|
||||||
style: {
|
style: {
|
||||||
...style,
|
...style,
|
||||||
...(keyPath.length > 1 ? {} : styles.root),
|
...((keyPath as unknown[]).length > 1 ? {} : styles.root),
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
theme = {
|
theme = {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user