diff --git a/apps/common/main/lib/view/Comments.js b/apps/common/main/lib/view/Comments.js index 392d8931f9..4880066348 100644 --- a/apps/common/main/lib/view/Comments.js +++ b/apps/common/main/lib/view/Comments.js @@ -759,7 +759,8 @@ define([ }, loadText: function () { if (this.textVal && this.commentsView) { - this.commentsView.getTextBox().val(this.textVal); + var textBox = this.commentsView.getTextBox(); + textBox && textBox.val(this.textVal); } }, getEditText: function () {