mirror of https://github.com/vector-im/riot-web
Added missing semicolon.
parent
c370b28694
commit
59ea865e8e
|
@ -231,7 +231,7 @@ export default class BasicMessageEditor extends React.Component {
|
|||
let parts;
|
||||
if (partsText) {
|
||||
const serializedTextParts = JSON.parse(partsText);
|
||||
const deserializedParts = serializedTextParts.map(p => partCreator.deserializePart(p))
|
||||
const deserializedParts = serializedTextParts.map(p => partCreator.deserializePart(p));
|
||||
parts = deserializedParts;
|
||||
} else {
|
||||
const text = event.clipboardData.getData("text/plain");
|
||||
|
|
Loading…
Reference in New Issue