radix:navbar-brand component may output empty span/div

Created on 14 February 2024, about 1 year ago
Updated 28 February 2024, about 1 year ago

I think more 'if tests' may be added to radix:navbar-brand component to avoid empty span or div outputs.

Before :

      {% block logo %}
       ...

        <div class="navbar-brand__text d-flex flex-column">
          <span>{{ text }}</span>
        
          {% if site_slogan %}
            <span class="small text-muted">{{ site_slogan }}</span>
          {% endif %}
        </div>
      {% endblock %}

After:

      {% block logo %}
       ...

        {% if text or site_slogan %}          <--- avoids empty div if both are not set
          <div class="navbar-brand__text d-flex flex-column">
            {% if text %}                            <--- avoids empty span if not set
              <span>{{ text }}</span>
            {% endif %}

            {% if site_slogan %}
              <span class="small text-muted">{{ site_slogan }}</span>
            {% endif %}
          </div>
        {% endif %}
      {% endblock %}
✨ Feature request
Status

Fixed

Version

6.0

Component

Code

Created by

πŸ‡«πŸ‡·France PhilY πŸ‡ͺπŸ‡ΊπŸ‡«πŸ‡· Paris, France

Live updates comments and jobs are added and updated live.
Sign in to follow issues

Merge Requests

Comments & Activities

Production build 0.71.5 2024