Skip to content
Snippets Groups Projects
Commit bbd8fdd1 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Perform deep comparison for card data when receiving new props (#9270)

Fixes #9226
parent c81bdafb
No related branches found
No related tags found
No related merge requests found
......@@ -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 });
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment