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
c7f7ace309
commit
02af835c24
|
@ -126,15 +126,15 @@ test('createStyling (custom)', () => {
|
|||
let customStyling = styling({
|
||||
testClass: 'customClass',
|
||||
testStyle: { height: 0 },
|
||||
testFunc: (styling: Styling, arg: string) => ({
|
||||
className: `${styling.className!} customClass--${arg}`,
|
||||
testFunc: (styling: Styling, arg) => ({
|
||||
className: `${styling.className!} customClass--${arg as string}`,
|
||||
style: {
|
||||
...styling.style,
|
||||
border: 0,
|
||||
},
|
||||
}),
|
||||
testFuncNoStyle: (styling: Styling, arg: string) => ({
|
||||
className: `${styling.className!} customClass--${arg}`,
|
||||
testFuncNoStyle: (styling: Styling, arg) => ({
|
||||
className: `${styling.className!} customClass--${arg as string}`,
|
||||
style: {
|
||||
...styling.style,
|
||||
border: 0,
|
||||
|
|
Loading…
Reference in New Issue
Block a user