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:
parent
30204a4db5
commit
941da45faa
3 changed files with 26 additions and 22 deletions
|
@ -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>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue