Don't reset scroll position when opening a modal
This commit is contained in:
@ -41,6 +41,10 @@ export default class PinnedStatuses extends ImmutablePureComponent {
|
||||
this.column = c;
|
||||
}
|
||||
|
||||
shouldUpdateScroll = (prevRouterProps, { location }) => {
|
||||
return !(location.state && location.state.mastodonModalOpen)
|
||||
}
|
||||
|
||||
render () {
|
||||
const { intl, statusIds, hasMore } = this.props;
|
||||
|
||||
@ -50,6 +54,7 @@ export default class PinnedStatuses extends ImmutablePureComponent {
|
||||
<StatusList
|
||||
statusIds={statusIds}
|
||||
scrollKey='pinned_statuses'
|
||||
shouldUpdateScroll={this.shouldUpdateScroll}
|
||||
hasMore={hasMore}
|
||||
/>
|
||||
</Column>
|
||||
|
Reference in New Issue
Block a user