Added missing semicolon.
This commit is contained in:
parent
c370b28694
commit
59ea865e8e
1 changed files with 1 additions and 1 deletions
|
@ -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");
|
||||||
|
|
Loading…
Reference in a new issue