Skip to content

Commit

Permalink
Fix missing "menuItem/extras/li_class"
Browse files Browse the repository at this point in the history
  • Loading branch information
petschki committed Jul 19, 2022
1 parent fc2d865 commit f80010c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plone/app/contentmenu/contentmenu.pt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<tal:menus repeat="menuItem menu">
<tal:def define="submenu menuItem/submenu;
identifier menuItem/extra/id">
<li id="${menuItem/extra/id}" class="${python:'dropend' if (submenu and toolbar_pos == 'side') else ''}">
<li id="${menuItem/extra/id}" class="${menuItem/extra/li_class|nothing} ${python:'dropend' if (submenu and toolbar_pos == 'side') else ''}">

<a href="#"
i18n:attributes="title;"
Expand Down

0 comments on commit f80010c

Please sign in to comment.