HTML Editor Default Font Will Display the First Font from `glide.ui.html.editor.font.collection` DescriptionStarting from the Zurich release, the HTML Editor will use the first font from glide.ui.html.editor.font.collection as the default font. Previously, there was an issue where Verdana was displayed as the default font, even if it was not included in glide.ui.html.editor.font.collection, causing inconsistencies. As part of PRB1823009, this issue has been resolved, ensuring that the editor picks the first font from glide.ui.html.editor.font.collection. If Verdana is still required as the default font, update the system property glide.ui.html.editor.font.collection to include Verdana as the first font in the list.Steps to Reproduce 1. Log in to the instance.2. Update Problem table - Description field to HTML Type 3. Update system property 'glide.ui.html.editor.v5.font.collection' to show only 2 fonts `Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;` 4. Check font for Description field in Native UI5. Check font for Description field in Workspace UI , Verdana font is visibleExpected behavior : Verdana font should not be visibleActual behavior : Verdana font is visible for HTML fieldsWorkaroundIf Verdana is still required as the default font, update the system property glide.ui.html.editor.font.collection to include Verdana as the first font in the list. Example Configuration:`Verdana=verdana,geneva;Andale Mono=andale mono,times;Arial=arial,helvetica,sans-serif;Arial Black=arial black,avant garde;Book Antiqua=book antiqua,palatino;Comic Sans MS=comic sans ms,sans-serif;Courier New=courier new,courier;Georgia=georgia,palatino;Helvetica=helvetica;Impact=impact,chicago;Symbol=symbol;Tahoma=tahoma,arial,helvetica,sans-serif;Terminal=terminal,monaco;Times New Roman=times new roman,times;Trebuchet MS=trebuchet ms,geneva;Webdings=webdings;Wingdings=wingdings; `This ensures that Verdana is selected as the first font in the HTML Editor.Related Problem: PRB1823009