mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:11:08 +08:00
Ensure deserialized Array is ordered by index
Object.keys does not guarantee any particular order, which could result in an out-of-order array if we did not sort said keys.
This commit is contained in:
parent
7de5743e3b
commit
2f22c2c7cb
@ -50,7 +50,9 @@ ArrayType.serialize = value => value;
|
||||
ArrayType.deserialize = value => {
|
||||
if (Array.isArray(value)) return value;
|
||||
|
||||
return Object.keys(value).reduce((array, key) => [...array, value[key]], []);
|
||||
return Object.keys(value)
|
||||
.sort()
|
||||
.reduce((array, key) => [...array, value[key]], []);
|
||||
};
|
||||
|
||||
export default ArrayType;
|
||||
|
Loading…
x
Reference in New Issue
Block a user