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

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) {