Fix tests in node 11 by using Array#sort correctly

This commit is contained in:
Hypnosphi 2018-11-05 18:33:09 +04:00
parent 9f9a261ab4
commit 0106721470

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