Browse Source

Fix thread CW expansion not being reset when changing threads

closed-social-glitch-2
Thibaut Girka 5 years ago
committed by ThibG
parent
commit
657805f444
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      app/javascript/flavours/glitch/features/status/index.js

+ 1
- 1
app/javascript/flavours/glitch/features/status/index.js View File

@ -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