editable-label now uses inner text for value instead of inner html to fix a bug in IOS where a <br> tag is inserted into the element for some reason.

This commit is contained in:
Matt Mo 2021-01-10 11:13:00 -08:00
parent 47e83a4148
commit 60eb43cd47

View File

@ -117,8 +117,8 @@ class EditableLabel extends IgniteElement {
this.editing = false;
}
if (this.input.innerHTML !== this.value) {
this.value = this.input.innerHTML;
if (this.input.innerText !== this.value) {
this.value = this.input.innerText;
//Dispatch a native change event
this.dispatchEvent(new CustomEvent("change", { bubbles: true }));