You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-11 20:22:36 +03:00
Allow component to update if currently expanded or if about to collapse
This commit is contained in:
@@ -145,9 +145,13 @@ module.exports = React.createClass({
|
||||
},
|
||||
|
||||
shouldComponentUpdate: function(nextProps, nextState) {
|
||||
// Update if
|
||||
// - The number of summarised events has changed
|
||||
// - or if the summary is currently expanded
|
||||
// - or if the summary is about to toggle to become collapsed
|
||||
return (
|
||||
nextProps.events.length !== this.props.events.length ||
|
||||
nextState.expanded !== this.state.expanded
|
||||
this.state.expanded || nextState.expanded
|
||||
);
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user