Skip to content

Commit

Permalink
Merge pull request #26770 from Pujan92/fix/25461
Browse files Browse the repository at this point in the history
Fix: Thread - No space between message and compose box when sender leave thread
  • Loading branch information
Gonals authored Sep 11, 2023
2 parents 4a8fb06 + dfffb8a commit ea3d575
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/pages/home/report/ReportActionsView.js
Original file line number Diff line number Diff line change
Expand Up @@ -275,6 +275,10 @@ function arePropsEqual(oldProps, newProps) {
return false;
}

if (lodashGet(newProps, 'report.participantAccountIDs', 0) !== lodashGet(oldProps, 'report.participantAccountIDs', 0)) {
return false;
}

return _.isEqual(lodashGet(newProps.report, 'icons', []), lodashGet(oldProps.report, 'icons', []));
}

Expand Down

0 comments on commit ea3d575

Please sign in to comment.