From: Claire Date: Tue, 13 Jul 2021 11:49:40 +0000 (+0200) Subject: Please CodeClimate X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=e4270cb55a133f4cb93290ff88b3fd2a3aa9f536;p=mastodon.git Please CodeClimate --- diff --git a/app/javascript/flavours/glitch/containers/scroll_container.js b/app/javascript/flavours/glitch/containers/scroll_container.js index 740e266cb..d21ff6368 100644 --- a/app/javascript/flavours/glitch/containers/scroll_container.js +++ b/app/javascript/flavours/glitch/containers/scroll_container.js @@ -6,11 +6,13 @@ import { ScrollContainer as OriginalScrollContainer } from 'react-router-scroll- const defaultShouldUpdateScroll = (prevRouterProps, { location }) => { // If the change is caused by opening a modal, do not scroll to top return !(location.state?.mastodonModalKey && location.state?.mastodonModalKey !== prevRouterProps?.location?.state?.mastodonModalKey); -} +}; export default class ScrollContainer extends OriginalScrollContainer { + static defaultProps = { shouldUpdateScroll: defaultShouldUpdateScroll, }; + }