Skip to content
Snippets Groups Projects
Unverified Commit bed824fe authored by Douglas Fabris's avatar Douglas Fabris Committed by GitHub
Browse files

fix: Settings list not displaying all groups (#32804)

parent e248432c
No related branches found
No related tags found
No related merge requests found
---
'@rocket.chat/meteor': patch
---
Fixes an issue not displaying all groups in settings list
import { css } from '@rocket.chat/css-in-js';
import type { Scrollable } from '@rocket.chat/fuselage';
import { Box } from '@rocket.chat/fuselage';
import type { ComponentProps } from 'react';
......@@ -26,17 +25,7 @@ const PageScrollableContent = forwardRef<HTMLElement, PageScrollableContentProps
borderBlockEndColor={borderBlockEndColor}
>
<CustomScrollbars onScroll={onScrollContent as CustomScrollbarsProps['onScroll']} ref={ref}>
<Box
className={css`
transform: translateZ(0);
`}
height='100%'
paddingBlock={16}
paddingInline={24}
display='flex'
flexDirection='column'
{...props}
/>
<Box paddingBlock={16} paddingInline={24} display='flex' flexDirection='column' {...props} />
</CustomScrollbars>
</Box>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment