Merge pull request #4720 from storybooks/node-11-fix

Fix tests in node 11 by using `Array#sort` correctly
This commit is contained in:
Filipp Riabchun 2018-11-05 20:29:04 +04:00 committed by Michael Shilman
parent b9ae585f9c
commit 9a70c94dc1

View File

@ -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