Change element classes for inline editors.
Review Request #13780 — Created April 24, 2024 and submitted — Latest diff uploaded
When I ported the inline editors to TypeScript, I marked them as being
HTMLDivElement
. These aren't always attached to a<div>
, so this
change fixed that to just beHTMLElement
.
Saw that I no longer got warnings instantiating an editor for a
<span>
.