Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bernhardoj committed Mar 2, 2023
1 parent bb62dd7 commit c8d3dcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pages/home/report/ReportActionCompose.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ class ReportActionCompose extends React.Component {

// Value state does not have the same value as comment props when the comment gets changed from another tab.
// In this case, we should synchronize the value between tabs.
const shouldSyncComment = prevProps.comment != this.props.comment && this.state.value != this.props.comment;
const shouldSyncComment = prevProps.comment !== this.props.comment && this.state.value !== this.props.comment;

// As the report IDs change, make sure to update the composer comment as we need to make sure
// we do not show incorrect data in there (ie. draft of message from other report).
Expand Down

0 comments on commit c8d3dcb

Please sign in to comment.