[Glitch] Do not re-position scroll when loading more (inserting items from below)

Port 8c601b54cc to glitch-soc
master
Thibaut Girka 6 years ago
parent 553cc28240
commit 32974a58dc
  1. 2
      app/javascript/flavours/glitch/components/scrollable_list.js

@ -86,7 +86,7 @@ export default class ScrollableList extends PureComponent {
const someItemInserted = React.Children.count(prevProps.children) > 0 &&
React.Children.count(prevProps.children) < React.Children.count(this.props.children) &&
this.getFirstChildKey(prevProps) !== this.getFirstChildKey(this.props);
if (someItemInserted && this.node.scrollTop > 0 || this.state.mouseOver) {
if (someItemInserted && this.node.scrollTop > 0 || (this.state.mouseOver && !prevProps.isLoading)) {
return this.node.scrollHeight - this.node.scrollTop;
} else {
return null;

Loading…
Cancel
Save