[Glitch] Fix scroll position in thread view reseting when closing a modal

Port 9d1c3d0678 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
local
Claire 7 months ago
parent 3735e6f79d
commit 99c72830bc
  1. 2
      app/javascript/flavours/glitch/features/status/index.jsx

@ -653,7 +653,7 @@ class Status extends ImmutablePureComponent {
shouldUpdateScroll = (prevRouterProps, { location }) => {
// Do not change scroll when opening a modal
if (location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey) {
if (location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey) {
return false;
}

Loading…
Cancel
Save