mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 16:51:09 +08:00
FIX ref getSourceType for paths with */index.html
* Fixes #10324 * Visiting <storybook-path>/index.html?path=/story/* will return "local" in getSourceType and will not throw an exception by going to 'external' switch case block.
This commit is contained in:
parent
5f6480aec5
commit
544572d40a
@ -47,7 +47,11 @@ export type RefUrl = string;
|
||||
export const getSourceType = (source: string) => {
|
||||
const { origin, pathname } = location;
|
||||
|
||||
if (source === origin || source === `${origin + pathname}iframe.html`) {
|
||||
if (
|
||||
source === origin ||
|
||||
source === `${origin + pathname}iframe.html` ||
|
||||
source === `${origin + pathname.replace(/(?!.*\/).*\.html$/, '')}iframe.html`
|
||||
) {
|
||||
return 'local';
|
||||
}
|
||||
return 'external';
|
||||
|
Loading…
x
Reference in New Issue
Block a user