1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2025-11-17 17:42:41 +03:00

Set flag before mutating on cut too

This commit is contained in:
David Baker
2020-01-20 13:03:09 +00:00
parent 2ed5d89c9f
commit 277f107924

View File

@@ -210,8 +210,8 @@ export default class BasicMessageEditor extends React.Component {
event.clipboardData.setData("application/x-riot-composer", JSON.stringify(selectedParts));
if (type === "cut") {
// Remove the text, updating the model as appropriate
replaceRangeAndMoveCaret(range, []);
this._modifiedFlag = true;
replaceRangeAndMoveCaret(range, []);
}
event.preventDefault();
}