mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
Merge pull request #4720 from storybooks/node-11-fix
Fix tests in node 11 by using `Array#sort` correctly
This commit is contained in:
parent
b9ae585f9c
commit
9a70c94dc1
@ -350,7 +350,7 @@ class Story extends Component {
|
||||
extract(children);
|
||||
|
||||
const array = Array.from(types.keys());
|
||||
array.sort((a, b) => getName(a) > getName(b));
|
||||
array.sort((a, b) => (getName(a) > getName(b) ? 1 : -1));
|
||||
|
||||
propTables = array.map((type, i) => (
|
||||
// eslint-disable-next-line react/no-array-index-key
|
||||
|
Loading…
x
Reference in New Issue
Block a user