'How can i put bullet points on all listed items (collapsible content) DAWN

im trying to get bullet points on all listed items on that tab (collapsible content) on dawn theme with shopify. But i managed to get that just on first item, you can check here with preview url: https://1524t2hmp2urghsm-53196980409.shopifypreview.com

and here is part of code reference this issue:

{%- when 'collapsible_tab' -%}
           <div class="product__acordion_container">
            <div class="product__accordion accordion" {{ block.shopify_attributes }}>
              <details id="Details-{{ block.id }}-{{ section.id }}">
                <summary>
                  <div class="summary__title">
                    {% render 'icon-accordion', icon: block.settings.icon %}
                    <h2 class="h4 accordion__title">
                      {{ block.settings.heading | default: block.settings.page.title }}
                    </h2>
                  </div>
                  {% render 'icon-caret' %}
                </summary>
                <ul>
                 <li id="ProductAccordion-{{ block.id }}-{{ section.id }}">{{ block.settings.content }}</li>
                  {{ block.settings.page.content }}
                </ul>
              </details>
            </div>
           </div>


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source