We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08b586d commit 5650b78Copy full SHA for 5650b78
.changeset/little-mayflies-divide.md
@@ -0,0 +1,5 @@
1
+---
2
+'@rocket.chat/meteor': patch
3
4
+
5
+Fixes room header toolbar different spacing on Options menu
apps/meteor/client/views/room/Header/RoomToolbox/RoomToolbox.tsx
@@ -51,7 +51,7 @@ const RoomToolbox = ({ className }: RoomToolboxProps) => {
51
{featuredActions.map(mapToToolboxItem)}
52
{featuredActions.length > 0 && <HeaderToolbarDivider />}
53
{visibleActions.map(mapToToolboxItem)}
54
- {showKebabMenu && <GenericMenu title={t('Options')} sections={hiddenActions} placement='bottom-end' />}
+ {showKebabMenu && <GenericMenu className={className} title={t('Options')} sections={hiddenActions} placement='bottom-end' />}
55
</>
56
);
57
};
0 commit comments