When a field editor section is marked to not show a section header, if the “collapsible?” property was “yes - initially collapsed” prior to turning off the header, the field editor section does not render at all.
Steps to Reproduce:
- Create new detail page for account
- Set the “Basics” section Collapsible property to “Yes - initially collapsed”
- Set the Show Section Header to false
- Save page
- Preview page
Expected Behavior
Basics should show without a section header
Actual Behavior
Basics doesn’t show at all
Sample Page XML
<skuidpage unsavedchangeswarning="yes" personalizationmode="server" showsidebar="true" showheader="true" tabtooverride="Account">   <models>
      <model id="Account" limit="1" query="true" createrowifnonefound="false" sobject="Account">
         <fields>
            <field id="Name"/>
            <field id="CreatedDate"/>
         </fields>
         <conditions>
            <condition type="param" enclosevalueinquotes="true" operator="=" field="Id" value="id"/>
         </conditions>
         <actions/>
      </model>
   </models>
   <components>
      <pagetitle model="Account" uniqueid="sk-NIaV3-70">
         <maintitle>
            <template>{{Name}}</template>
         </maintitle>
         <subtitle>
            <template>{{Model.label}}</template>
         </subtitle>
         <actions>
            <action type="savecancel" window="self"/>
         </actions>
      </pagetitle>
      <basicfieldeditor showsavecancel="false" showheader="true" model="Account" mode="read" uniqueid="sk-NIaV3-71">
         <columns>
            <column width="100%">
               <sections>
                  <section title="Basics" collapsible="collapsed" showheader="false">
                     <fields>
                        <field id="Name"/>
                     </fields>
                  </section>
               </sections>
            </column>
         </columns>
      </basicfieldeditor>
   </components>
   <resources>
      <labels/>
      <css/>
      <javascript/>
   </resources>
   <styles>
      <styleitem type="background" bgtype="none"/>
   </styles>
</skuidpage>
