Ensure we don't re-route to the same URL when we are using a specifier.

This commit is contained in:
Tom Coleman 2020-08-03 15:55:10 +10:00
parent b1bd4206f3
commit e91dd0e970

View File

@ -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}`);
}
}
});