diff --git a/src/controllers/molecules/MessageComposer.js b/src/controllers/molecules/MessageComposer.js index 0fa8066595..a9de008d6f 100644 --- a/src/controllers/molecules/MessageComposer.js +++ b/src/controllers/molecules/MessageComposer.js @@ -106,7 +106,7 @@ module.exports = { // show the message this.element.value = this.data[this.position]; } - else if (this.originalText) { + else if (this.originalText !== undefined) { // restore the original text the user was typing. this.element.value = this.originalText; }