HTML Editor Default Font Will Display the First Font from `glide.ui.html.editor.font.collection` DescriptionStarting with the Zurich release, the HTML Editor determines its default font using the following priority order: If Verdana is present in glide.ui.html.editor.font.collection, Verdana will be used as the default font.If Verdana is not present, the first font listed in glide.ui.html.editor.font.collection will be used as the default.If the system property is empty or not defined, the editor will fall back to the default font family (Verdana). Previously, the HTML Editor incorrectly displayed Verdana as the default font even when it was not included in glide.ui.html.editor.font.collection, leading to inconsistencies between Native UI and Workspace UI. As part of PRB1823009, this behavior has been corrected so that the editor now consistently follows the font selection logic described above.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 another font is required as the default font, update the system propertyglide.ui.html.editor.font.collection to exclude Verdana or ensure that Verdana is not the first font in the list.With this configuration, Verdana will not be selected as the default font, and the editor will instead use the first font defined in the collectionExample 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; Important Note If Verdana is included and appears inglide.ui.html.editor.font.collection, it will be selected as the default font. Related Problem: PRB1823009