Merge pull request #1724 from matrix-org/t3chguy/nvl/rich_quoting_nullguard

Null guard against falsey (non-null) props.node, to make react happy
This commit is contained in:
David Baker 2018-01-31 18:10:52 +00:00 committed by GitHub
commit 4c17b5f1c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -182,6 +182,7 @@ export default class Quote extends React.Component {
} }
// Deliberately render nothing if the URL isn't recognised // Deliberately render nothing if the URL isn't recognised
return this.props.node; // in case we get an undefined/falsey node, replace it with null to make React happy
return this.props.node || null;
} }
} }