Skip to content
Snippets Groups Projects
Unverified Commit bb69d154 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix null error introduced in #9270 (#9275)

parent bbd8fdd1
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.equals(nextProps.card)) {
if (!Immutable.is(this.props.card, 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