forked from treehouse/mastodon
Perform deep comparison for card data when receiving new props (#9270)
Fixes #9226signup-info-prompt
parent
c81bdafb07
commit
bbd8fdd185
|
@ -73,7 +73,7 @@ export default class Card extends React.PureComponent {
|
|||
};
|
||||
|
||||
componentWillReceiveProps (nextProps) {
|
||||
if (this.props.card !== nextProps.card) {
|
||||
if (!this.props.card.equals(nextProps.card)) {
|
||||
this.setState({ embedded: false });
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue