Font changes when spelling check correction in HTML EditorIssue When a user is typing in the Major Incident Workbench within the WYSIWYG HTML editor and notices a spelling error (browser) and corrects it, the font changes https://<instance_name>.service-now.com/nav_to.do?uri=%2F$major_incident_workbench.do%3Fsysparm_stack%3Dno%26sysparm_sys_id%3D<sys_id>Navigate to Communications TabSelect Send - Update Email (or) and Action buttons in the listIn the body modify the HTML via source code and click OK: <p style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><strong><span style="font-family: Arial, sans-serif; color: black;">TYPE HERE</span></strong></p> Type anything in the editor with spell errors and correct it with spellcheckNotice that Font changes for the above Text.CauseSpellcheck auto-corrects the HTML Tag to by semantic with standard HTML formats. Ex the above HTML will be modified as below: <p style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-family: Arial, sans-serif; color: black;"><span style="font-family: Arial, sans-serif; font-size: 11pt;"><strong>TYPE HERE. </strong></span><span style="font-family: Arial, sans-serif;"><span style="font-size: 14.6667px;"><strong>test</strong></span></span><span style="font-family: Arial, sans-serif; font-size: 11pt;"><strong> </strong></span></span></p><p> </p> If you notice, after the spellcheck, it formats the HTML Tags, specifically <strong> tags, and places it within the <span> tag which semantically correct to make it properly align with HTML syntax.ResolutionExpected HTML should be: <p style="margin: 0cm 0cm 0.0001pt; font-size: 11pt; font-family: Calibri, sans-serif;"><span style="font-family: Arial, sans-serif; color: black;"><strong>TYPE HERE</strong></span></p>