You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The next step in resolving #103699. It aims to replace construction of HTML elements by string concatenation in all of the simple cases (i.a. when the text content of the element is not rendered in any special way).
For example:
Replace this._domNode.innerHTML = ‘<span>no commands</span>’;
with
This issue is separated from #104643 as it occurs in what appears to be a more sensitive code, covered with more test cases and placed in a separate module. The issue type and fix strategy should be the same though.