Fixed a bug with newValue on the template.

This commit is contained in:
Matt Mo 2021-03-09 14:18:23 -08:00
parent 3eaf3b136a
commit 653abb3aec

View File

@ -188,7 +188,7 @@ class IgniteTemplate {
if (this.element.hasAttribute("contenteditable") && this.element.getAttribute("contenteditable").toLowerCase().trim() == "true") {
newValue = this.element.textContent;
} else {
neValue = this.element.value;
newValue = this.element.value;
}
if (reflect instanceof Function) {