Added missing semicolon.

pull/21833/head
Christopher 2020-01-13 14:29:42 +00:00
parent c370b28694
commit 59ea865e8e
1 changed files with 1 additions and 1 deletions

View File

@ -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");