4eb85cbf0be0f899ae31e9c1751e49e7e9f12b01
chmalee
  Mon Oct 13 15:38:31 2025 -0700
Remove stray br tag (yet again) from code that creates select tags with options, refs #36484

diff --git src/hg/lib/hui.c src/hg/lib/hui.c
index f42b20dba82..4829a3a7796 100644
--- src/hg/lib/hui.c
+++ src/hg/lib/hui.c
@@ -9027,31 +9027,31 @@
     MAKE_PM_BUTTON_FILTER_COMP("false","minus_fc",'-')
     printf("</TD>\n");
     }
 
 // Now make a filterComp box for each ABC dimension
 int dimIx=dimA;
 for (dimIx=dimA;dimIx<membersForAll->dimMax;dimIx++)
     {
     printf("<TD align='left'><B>%s:</B><BR>\n",
            labelWithVocabLinkForMultiples(db,parentTdb,membersForAll->members[dimIx]));
 
     safef(id, sizeof id, "fc%d",dimIx); 
     printf(
       "<SELECT id='%s' name='%s.filterComp.%s' %s " 
       "style='display: none; font-size:.8em;' " 
-      "class='filterComp'><BR>\n" 
+      "class='filterComp'>\n"
 	,id,parentTdb->track,membersForAll->members[dimIx]->groupTag,
        "multiple");
     jsOnEventById("change", id, "filterCompositeSelectionChanged(this);");
 
 
     // DO we support anything besides multi?
     //  (membersForAll->members[dimIx]->fcType == fctMulti?"multiple ":""));
     if (membersForAll->members[dimIx]->fcType != fctOneOnly)
         printf("<OPTION%s>All</OPTION>\n",
                (sameWord("All",membersForAll->checkedTags[dimIx])?" SELECTED":"") );
 
     int ix=0;
     for (ix=0;ix<membersForAll->members[dimIx]->count; ix++)
         {
         boolean alreadySet = membersForAll->members[dimIx]->selected[ix];