Fix thread CW expansion not being reset when changing threads

master
Thibaut Girka 6 years ago committed by ThibG
parent 8433bd89e4
commit 657805f444
  1. 2
      app/javascript/flavours/glitch/features/status/index.js

@ -103,7 +103,7 @@ export default class Status extends ImmutablePureComponent {
if (nextProps.params.statusId !== this.props.params.statusId && nextProps.params.statusId) {
this._scrolledIntoView = false;
this.props.dispatch(fetchStatus(nextProps.params.statusId));
this.setState({ isExpanded: autoUnfoldCW(nextProps.settings, nextProps.status) });
this.setState({ isExpanded: autoUnfoldCW(nextProps.settings, nextProps.status), threadExpanded: undefined });
}
}

Loading…
Cancel
Save