particle
particle copied to clipboard
dropdown_menu_right is empty
In source/default/_patterns/01-atoms/dropdown/_dropdown.twig line 53 is:
<div class="dropdown-menu {{ dropdown_menu_right }}" {{ dropdown_menu_aria_label }}>
but dropdown_menu_right never gets set. This is easily fixed by adding a line between 40 and 41:
{% set dropdown_menu_right = dropdown_menu_right ? 'dropdown-menu-right' : '' %}
or something to that effect.