loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'fix: reset `history.scrollRestoration` if set to `manual` and no issue anchor in url' (#5684) from viceice/fix/ui/scroll-restoration into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/5684
Reviewed-by: Otto <otto@codeberg.org>

Otto 30838da1 698b1c07

+3
+3
web_src/js/features/repo-issue.js
··· 481 481 }); 482 482 } 483 483 } 484 + } else if (window.history.scrollRestoration === 'manual') { 485 + // reset scrollRestoration to 'auto' if there is no hash in url and we set it to 'manual' before 486 + window.history.scrollRestoration = 'auto'; 484 487 } 485 488 486 489 $(document).on('click', '.show-outdated', function (e) {