File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
invokeai/frontend/web/src/features/modelManagerV2/subpanels Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ const modelPaneSx: SystemStyleObject = {
18
18
} ,
19
19
h : 'full' ,
20
20
minWidth : '300px' ,
21
+ overflow : 'auto' ,
21
22
} ;
22
23
23
24
export const ModelPane = memo ( ( ) => {
Original file line number Diff line number Diff line change @@ -40,15 +40,15 @@ export const ModelView = memo(({ modelConfig }: Props) => {
40
40
} , [ modelConfig . base , modelConfig . type ] ) ;
41
41
42
42
return (
43
- < Flex flexDir = "column" gap = { 4 } >
43
+ < Flex flexDir = "column" gap = { 4 } h = "full" >
44
44
< ModelHeader modelConfig = { modelConfig } >
45
45
{ modelConfig . format === 'checkpoint' && modelConfig . type === 'main' && (
46
46
< ModelConvertButton modelConfig = { modelConfig } />
47
47
) }
48
48
< ModelEditButton />
49
49
</ ModelHeader >
50
50
< Divider />
51
- < Flex flexDir = "column" h = "full" gap = { 4 } >
51
+ < Flex flexDir = "column" gap = { 4 } >
52
52
< Box >
53
53
< SimpleGrid columns = { 2 } gap = { 4 } >
54
54
< ModelAttrView label = { t ( 'modelManager.baseModel' ) } value = { modelConfig . base } />
You can’t perform that action at this time.
0 commit comments