Merge branch 'vector' of github.com:matrix-org/matrix-react-sdk into erikj/room_editing

This commit is contained in:
Erik Johnston
2015-07-20 18:18:04 +01:00
11 changed files with 199 additions and 49 deletions
+1 -1
View File
@@ -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;
}