Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions src/pages/home/report/ReportActionItemMessageEdit.js
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,17 @@ class ReportActionItemMessageEdit extends React.Component {
};
}

componentWillUnmount() {
// Skip if this is not the focused message so the other edit composer stays focused.
if (!this.state.isFocused) {
return;
}

// Show the main composer when the focused message is deleted from another client

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@bernhardoj Could you add an explanation of why we only do it in the focused message and what the problem we trying to solve with that code?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

updated

// to prevent the main composer stays hidden until we swtich to another chat.
toggleReportActionComposeView(true, this.props.isSmallScreenWidth);
}

/**
* Update Selection on change cursor position.
*
Expand Down