mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 23:01:16 +08:00
Add try,catch for IE11 as it breaks script execution
This commit is contained in:
parent
21d60e22b8
commit
db91952050
@ -48,7 +48,11 @@ export function changeUrl(clientStore, usePush) {
|
||||
if (!data.selectedKind) return;
|
||||
|
||||
const state = getUrlState(data);
|
||||
history[usePush ? 'pushState' : 'replaceState'](state, '', state.url);
|
||||
try {
|
||||
history[usePush ? 'pushState' : 'replaceState'](state, '', state.url);
|
||||
} catch (e) {
|
||||
// do nothing
|
||||
}
|
||||
}
|
||||
|
||||
export function updateStore(queryParams, actions) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user