Merge branch 'dev' into next-13

This commit is contained in:
ajnart
2023-02-02 19:03:11 +09:00
17 changed files with 124 additions and 69 deletions

View File

@@ -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>

View File

@@ -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"