mirror of
https://github.com/ajnart/homarr.git
synced 2026-02-07 07:09:21 +01:00
Merge branch 'dev' into next-13
This commit is contained in:
@@ -68,6 +68,15 @@ export default function DockerMenuButton(props: any) {
|
||||
position="right"
|
||||
size="full"
|
||||
title={<ContainerActionBar selected={selection} reload={reload} />}
|
||||
styles={{
|
||||
drawer: {
|
||||
display: 'flex',
|
||||
flexDirection: 'column',
|
||||
},
|
||||
body: {
|
||||
minHeight: 0,
|
||||
},
|
||||
}}
|
||||
>
|
||||
<DockerTable containers={containers} selection={selection} setSelection={setSelection} />
|
||||
</Drawer>
|
||||
|
||||
@@ -120,7 +120,7 @@ export default function DockerTable({
|
||||
});
|
||||
|
||||
return (
|
||||
<ScrollArea style={{ height: '90vh' }} offsetScrollbars>
|
||||
<ScrollArea style={{ height: '100%' }} offsetScrollbars>
|
||||
<TextInput
|
||||
placeholder={t('search.placeholder')}
|
||||
mr="md"
|
||||
|
||||
@@ -194,7 +194,7 @@ export function MediaDisplay({ media }: { media: IMedia }) {
|
||||
}}
|
||||
>
|
||||
{media.type === 'tvshow' && (
|
||||
<Badge variant="dot" size="xs" radius="md" color="blue">
|
||||
<Badge variant="dot" size="xs" radius="md" color="blue" style={{ maxWidth: 200 }}>
|
||||
s{media.seasonNumber}e{media.episodeNumber} - {media.episodetitle}
|
||||
</Badge>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user