Hello Cumulocity community,
We would like to add an additional entry to the right menu (Right Drawer). We were able to achieve this using the “hookDrawer”.
hookDrawer([
{
component: CustomDrawerItemComponent,
position: 'right',
priority: 0,
},
]),
The issue is that the menu entry is always added at the last position, regardless of the priority value provided. As a result, the entry is placed below “Legal notices,” which doesn’t look very appealing. Is it possible to position it at least above “Legal notices” or ideally directly below “UI settings”?
Thank you in advance!


