mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-11-14 14:06:15 +01:00
fix: reset history.scrollRestoration
if set to manual
and no issue anchor in url
(cherry picked from commit ec4a0e1b6e
)
This commit is contained in:
parent
1dc03cc1c3
commit
8e4536fd98
1 changed files with 3 additions and 0 deletions
|
@ -478,6 +478,9 @@ export function initRepoPullRequestReview() {
|
|||
});
|
||||
}
|
||||
}
|
||||
} else if (window.history.scrollRestoration === 'manual') {
|
||||
// reset scrollRestoration to 'auto' if there is no hash in url and we set it to 'manual' before
|
||||
window.history.scrollRestoration = 'auto';
|
||||
}
|
||||
|
||||
$(document).on('click', '.show-outdated', function (e) {
|
||||
|
|
Loading…
Reference in a new issue