1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-07 10:46:24 +03:00

re-apply formatting when editor is closed

This commit is contained in:
Bruno Windels
2019-05-20 10:19:29 +02:00
parent d81ab2464b
commit 0c0052d06e

View File

@@ -131,8 +131,9 @@ module.exports = React.createClass({
componentDidUpdate: function(prevProps) {
if (!this.props.isEditing) {
const stoppedEditing = prevProps.isEditing && !this.props.isEditing;
const messageWasEdited = prevProps.replacingEventId !== this.props.replacingEventId;
if (messageWasEdited) {
if (messageWasEdited || stoppedEditing) {
this._applyFormatting();
}
this.calculateUrlPreview();