mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:31:05 +08:00
Ensure we don't re-route to the same URL when we are using a specifier.
This commit is contained in:
parent
b1bd4206f3
commit
e91dd0e970
@ -342,7 +342,12 @@ export const init: ModuleFn = ({
|
||||
if (fullAPI.isSettingsScreenActive()) return;
|
||||
|
||||
if (sourceType === 'local') {
|
||||
navigate(`/${viewMode}/${storyId}`);
|
||||
// Special case -- if we are already at the story being specified (i.e. the user started at a given story),
|
||||
// we don't need to change URL. See https://github.com/storybookjs/storybook/issues/11677
|
||||
const state = store.getState();
|
||||
if (state.storyId !== storyId || state.viewMode !== viewMode) {
|
||||
navigate(`/${viewMode}/${storyId}`);
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user