[Glitch] Perform deep comparison for card data when receiving new props

Prevents embedded players from resetting when interacting with the toot
th-downstream
Thibaut Girka 6 years ago committed by ThibG
parent 750b967e86
commit 6ad1fc3254

@ -75,7 +75,7 @@ export default class Card extends React.PureComponent {
};
componentWillReceiveProps (nextProps) {
if (this.props.card !== nextProps.card) {
if (!Immutable.is(this.props.card, nextProps.card)) {
this.setState({ embedded: false });
}
}

Loading…
Cancel
Save