Update Canvas.tsx

This commit is contained in:
Fabien 2021-04-27 13:54:33 +02:00 committed by GitHub
parent 7f179226db
commit c69cccee1b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -44,7 +44,7 @@ const getPreviewProps = (
const stories = childArray.filter(
(c: ReactElement) => c.props && (c.props.id || c.props.name)
) as ReactElement[];
const { mdxComponentMeta, mdxStoryNameToKey } = docsContext;
const { mdxComponentMeta, mdxStoryNameToKey, parameters } = docsContext;
const targetIds = stories.map(
(s) =>
s.props.id ||
@ -59,7 +59,7 @@ const getPreviewProps = (
withSource: sourceProps,
isExpanded: withSource
? withSource === SourceState.OPEN
: docsContext?.parameters?.docs?.isCodeExpanded,
: parameters?.docs?.isCodeExpanded,
};
};