Merge pull request #16454 from storybookjs/fix/addon-interactions-safe-check

Addon-interactions: Add safety check on fileName parameter
This commit is contained in:
Michael Shilman 2021-10-24 00:08:41 +08:00 committed by GitHub
commit c68c2aae31
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -53,7 +53,8 @@ export const Panel: React.FC<PanelProps> = (props) => {
});
const { storyId } = useStorybookState();
const [fileName] = useParameter('fileName', '').split('/').slice(-1);
const storyFilePath = useParameter('fileName', '');
const [fileName] = storyFilePath.toString().split('/').slice(-1);
const scrollToTarget = () => scrollTarget?.scrollIntoView({ behavior: 'smooth', block: 'end' });
const isDebugging = log.some((item) => pendingStates.includes(item.state));