mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 19:01:05 +08:00
Merge pull request #16454 from storybookjs/fix/addon-interactions-safe-check
Addon-interactions: Add safety check on fileName parameter
This commit is contained in:
commit
c68c2aae31
@ -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));
|
||||
|
Loading…
x
Reference in New Issue
Block a user