particle icon indicating copy to clipboard operation
particle copied to clipboard

dropdown_menu_right is empty

Open juranosaurustechs opened this issue 5 years ago • 0 comments

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.

juranosaurustechs avatar Dec 12 '19 08:12 juranosaurustechs