mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 06:41:25 +08:00
Fix serialization of object properties
This commit is contained in:
parent
8003c9b20f
commit
5444a76613
@ -415,6 +415,11 @@ export class Instrumenter {
|
||||
) {
|
||||
return { __class__: { name: value.constructor.name } };
|
||||
}
|
||||
if (Object.prototype.toString.call(value) === '[object Object]') {
|
||||
return Object.fromEntries(
|
||||
Object.entries(value).map(([key, val]) => [key, serializeValues(val)])
|
||||
);
|
||||
}
|
||||
return value;
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user