fix(docsearch): use scrollTo when unmounting modal
This commit is contained in:
parent
ad3dc51914
commit
1f9deb1322
1 changed files with 3 additions and 1 deletions
|
|
@ -279,7 +279,9 @@ export function DocSearchModal({
|
|||
|
||||
return () => {
|
||||
document.body.classList.remove('DocSearch--active');
|
||||
document.body.scrollTop = scrollY.current;
|
||||
// IE11 doesn't support `scrollTo` so we check that the method exists
|
||||
// first.
|
||||
window.scrollTo?.(0, scrollY.current);
|
||||
};
|
||||
}, []);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue