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

Move server logs to mui

This commit is contained in:
viown 2025-01-14 01:57:43 +03:00
parent 30204a4db5
commit 941da45faa
3 changed files with 26 additions and 22 deletions

View file

@ -121,16 +121,14 @@ const Logs = () => {
</Button>
</Stack>
</Form>
<div className='serverLogs readOnlyContent'>
<div className='paperList'>
{logs?.map(log => {
return <LogItem
key={log.Name}
logFile={log}
/>;
})}
</div>
</div>
<Stack className='serverLogs readOnlyContent' spacing={1} sx={{ mt: 1 }}>
{logs?.map(log => {
return <LogItem
key={log.Name}
logFile={log}
/>;
})}
</Stack>
</Box>
</Page>
);