mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
Fix issue with addon-queryparams
It was replacing `location.search` but that could be the empty string 🤦
This commit is contained in:
parent
465360aa84
commit
b9567054a1
@ -17,10 +17,10 @@ export const withQuery = makeDecorator({
|
||||
? qs.parse(parameters, { ignoreQueryPrefix: true })
|
||||
: parameters;
|
||||
|
||||
const newQuery = qs.stringify({ ...currentQuery, ...additionalQuery });
|
||||
const newLocation = location.href.replace(location.search, `?${newQuery}`);
|
||||
const newLocation = new URL(document.location.href);
|
||||
newLocation.search = qs.stringify({ ...currentQuery, ...additionalQuery });
|
||||
|
||||
history.replaceState({}, document.title, newLocation);
|
||||
history.replaceState({}, document.title, newLocation.toString());
|
||||
|
||||
return getStory(context);
|
||||
},
|
||||
|
Loading…
x
Reference in New Issue
Block a user