Changed element.data to nodeValue since that is the official property.

This commit is contained in:
MattMo 2024-11-20 07:50:29 -08:00
parent 812f8352f5
commit ed49ad1392

View File

@ -2511,12 +2511,12 @@ class text extends IgniteTemplate {
} }
} }
this.element.data = this._text; this.element.nodeValue = this._text;
} }
onTextChanged(newValue) { onTextChanged(newValue) {
if (this.element) { if (this.element) {
this.element.data = newValue; this.element.nodeValue = newValue;
} }
this._text = newValue; this._text = newValue;