Skip to content

Commit 5650b78

Browse files
fix: wrong spacing on room header toolbar Options menu (#38318)
1 parent 08b586d commit 5650b78

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ const RoomToolbox = ({ className }: RoomToolboxProps) => {
5151
{featuredActions.map(mapToToolboxItem)}
5252
{featuredActions.length > 0 && <HeaderToolbarDivider />}
5353
{visibleActions.map(mapToToolboxItem)}
54-
{showKebabMenu && <GenericMenu title={t('Options')} sections={hiddenActions} placement='bottom-end' />}
54+
{showKebabMenu && <GenericMenu className={className} title={t('Options')} sections={hiddenActions} placement='bottom-end' />}
5555
</>
5656
);
5757
};

0 commit comments

Comments
 (0)