You've already forked matrix-react-sdk
mirror of
https://github.com/matrix-org/matrix-react-sdk.git
synced 2025-11-17 17:42:41 +03:00
Added missing semicolon.
This commit is contained in:
@@ -231,7 +231,7 @@ export default class BasicMessageEditor extends React.Component {
|
|||||||
let parts;
|
let parts;
|
||||||
if (partsText) {
|
if (partsText) {
|
||||||
const serializedTextParts = JSON.parse(partsText);
|
const serializedTextParts = JSON.parse(partsText);
|
||||||
const deserializedParts = serializedTextParts.map(p => partCreator.deserializePart(p))
|
const deserializedParts = serializedTextParts.map(p => partCreator.deserializePart(p));
|
||||||
parts = deserializedParts;
|
parts = deserializedParts;
|
||||||
} else {
|
} else {
|
||||||
const text = event.clipboardData.getData("text/plain");
|
const text = event.clipboardData.getData("text/plain");
|
||||||
|
|||||||
Reference in New Issue
Block a user