Commit 342d5f16 authored by Luis Carvalho's avatar Luis Carvalho Committed by De Araujo, Renato [CONBR Non-J&J]
Browse files

Issue #3317387 by luiscarvalho, RenatoG: Default value for close button does not render correctly

parent 947def69
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -18,7 +18,13 @@

          {# Verify if should Display button X. #}
          {% if display_button_x_close %}
            <button type="button" class="close js-modal-page-ok-button {{ top_right_button_class }}" data-dismiss="modal">{{ top_right_button_label }}</button>
            <button type="button" class="close js-modal-page-ok-button {{ top_right_button_class }}" data-dismiss="modal">
              {% if top_right_button_label == "&times;" %}
                &times;
              {% else %}
                {{ top_right_button_label }}
              {% endif %}
            </button>
          {% endif %}

          {# Verify if should Display Title. #}