mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 21:51:17 +08:00
pulled entries out of spread
This commit is contained in:
parent
0906209748
commit
7d3579ac9c
@ -130,9 +130,8 @@ const Content = styled(({ tests, className }: ContentProps) => (
|
||||
}
|
||||
|
||||
const testsByType: Map<string, any> = getTestsByTypeMap(result);
|
||||
const sortedTestsByCount = [...testsByType.entries()].sort(
|
||||
(a, b) => a[1].length - b[1].length
|
||||
);
|
||||
const entries: any = testsByType.entries();
|
||||
const sortedTestsByCount = [...entries].sort((a, b) => a[1].length - b[1].length);
|
||||
return (
|
||||
<SizeMe refreshMode="debounce" key={name}>
|
||||
{({ size }: { size: any }) => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user