1
0
Fork 0
mirror of https://github.com/jellyfin/jellyfin-web synced 2025-03-30 19:56:21 +00:00

Merge pull request #5937 from thornbill/activity-table-size

Limit activity table to screen size
This commit is contained in:
Bill Thornton 2024-08-21 13:13:31 -04:00 committed by GitHub
commit 125fc00e26
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -223,7 +223,14 @@ const Activity = () => {
title={globalize.translate('HeaderActivity')} title={globalize.translate('HeaderActivity')}
className='mainAnimatedPage type-interior' className='mainAnimatedPage type-interior'
> >
<div className='content-primary'> <Box
className='content-primary'
sx={{
display: 'flex',
flexDirection: 'column',
height: '100%'
}}
>
<Box <Box
sx={{ sx={{
display: 'flex', display: 'flex',
@ -262,11 +269,8 @@ const Activity = () => {
rowCount={rowCount} rowCount={rowCount}
getRowId={getRowId} getRowId={getRowId}
loading={isLoading} loading={isLoading}
sx={{
minHeight: 500
}}
/> />
</div> </Box>
</Page> </Page>
); );
}; };