Commit e9d88cb2 authored by Julia Radzhabova's avatar Julia Radzhabova Committed by GitHub

Merge pull request #83 from ONLYOFFICE/feature/bug-fix

Fix Bug 35408.
parents c5e22a6a c51f4393
...@@ -759,7 +759,8 @@ define([ ...@@ -759,7 +759,8 @@ define([
}, },
loadText: function () { loadText: function () {
if (this.textVal && this.commentsView) { if (this.textVal && this.commentsView) {
this.commentsView.getTextBox().val(this.textVal); var textBox = this.commentsView.getTextBox();
textBox && textBox.val(this.textVal);
} }
}, },
getEditText: function () { getEditText: function () {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment