mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Fix
This commit is contained in:
parent
8b9b4d905b
commit
34ef168ee8
|
@ -127,14 +127,14 @@ test('createStyling (custom)', () => {
|
||||||
testClass: 'customClass',
|
testClass: 'customClass',
|
||||||
testStyle: { height: 0 },
|
testStyle: { height: 0 },
|
||||||
testFunc: (styling: Styling, arg: string) => ({
|
testFunc: (styling: Styling, arg: string) => ({
|
||||||
className: `${styling.className} customClass--${arg}`,
|
className: `${styling.className!} customClass--${arg}`,
|
||||||
style: {
|
style: {
|
||||||
...styling.style,
|
...styling.style,
|
||||||
border: 0,
|
border: 0,
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
testFuncNoStyle: (styling: Styling, arg: string) => ({
|
testFuncNoStyle: (styling: Styling, arg: string) => ({
|
||||||
className: `${styling.className} customClass--${arg}`,
|
className: `${styling.className!} customClass--${arg}`,
|
||||||
style: {
|
style: {
|
||||||
...styling.style,
|
...styling.style,
|
||||||
border: 0,
|
border: 0,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user