Set flag before mutating on cut too

pull/21833/head
David Baker 2020-01-20 13:03:09 +00:00
parent 2ed5d89c9f
commit 277f107924
1 changed files with 1 additions and 1 deletions

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();
}