mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-17 11:42:29 +03:00
Merge 0ba47532b4
into 7a48268a74
This commit is contained in:
commit
dcc2ccb6e2
5
.changeset/hungry-forks-travel.md
Normal file
5
.changeset/hungry-forks-travel.md
Normal file
|
@ -0,0 +1,5 @@
|
|||
---
|
||||
'@redux-devtools/inspector-monitor': patch
|
||||
---
|
||||
|
||||
Support sort keys alphabetically in Action and Diff tabs
|
|
@ -14,6 +14,7 @@ const ActionTab: FunctionComponent<
|
|||
labelRenderer,
|
||||
dataTypeKey,
|
||||
isWideLayout,
|
||||
sortStateTreeAlphabetically,
|
||||
}) => (
|
||||
<JSONTree
|
||||
labelRenderer={labelRenderer}
|
||||
|
@ -24,6 +25,7 @@ const ActionTab: FunctionComponent<
|
|||
}
|
||||
invertTheme={invertTheme}
|
||||
hideRoot
|
||||
sortObjectKeys={sortStateTreeAlphabetically}
|
||||
/>
|
||||
);
|
||||
|
||||
|
|
|
@ -12,6 +12,7 @@ const DiffTab: FunctionComponent<
|
|||
labelRenderer,
|
||||
isWideLayout,
|
||||
dataTypeKey,
|
||||
sortStateTreeAlphabetically,
|
||||
}) => (
|
||||
<JSONDiff
|
||||
{...{
|
||||
|
@ -21,6 +22,7 @@ const DiffTab: FunctionComponent<
|
|||
labelRenderer,
|
||||
isWideLayout,
|
||||
dataTypeKey,
|
||||
sortObjectKeys: sortStateTreeAlphabetically,
|
||||
}}
|
||||
/>
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue
Block a user