mirror of
1
Fork 0

fix: reset `history.scrollRestoration` if set to `manual` and no issue anchor in url

This commit is contained in:
Michael Kriese 2024-10-24 15:13:58 +02:00
parent aa86e94853
commit ec4a0e1b6e
No known key found for this signature in database
GPG Key ID: F8D7748549A5986A
1 changed files with 3 additions and 0 deletions

View File

@ -481,6 +481,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) { $(document).on('click', '.show-outdated', function (e) {