@@ -82,6 +82,11 @@ const Component = (props: any) => {
8282 return (
8383 < Box
8484 style = { {
85+ height : '75%' ,
86+ // width: '20%',
87+ overflow : 'hidden' ,
88+ scrollBehavior : 'smooth' ,
89+ overflowY : 'scroll' ,
8590 borderRight : '1px solid #A8A8A8' ,
8691 padding : '0 50px 0 33px' ,
8792 marginTop : '10rem' ,
@@ -95,7 +100,7 @@ const Component = (props: any) => {
95100 />
96101 </Box> */ }
97102
98- < Box style = { { marginTop : '-20px' } } >
103+ < Box style = { { } } >
99104 { /* {props?.fromRegisterComponent && (
100105 <FlexBox
101106 onClick={() => selectSection('all_components')}
@@ -362,7 +367,7 @@ const Component = (props: any) => {
362367 ...sectionStyle ,
363368 background : formatSectionColor ( item ) ,
364369 } }
365- marginTop = "sm"
370+ // marginTop="sm"
366371 >
367372 < Box >
368373 < icons . orchestrator
@@ -439,6 +444,34 @@ const Component = (props: any) => {
439444 </ Box >
440445 </ FlexBox >
441446 ) }
447+ { item === 'model_registry' && (
448+ < FlexBox
449+ onClick = { ( ) => selectSection ( item ) }
450+ style = { {
451+ ...sectionStyle ,
452+ background : formatSectionColor ( item ) ,
453+ } }
454+ marginTop = "sm"
455+ >
456+ < Box >
457+ < icons . model_registry
458+ color = {
459+ selectedComp === item
460+ ? iconColors . white
461+ : iconColors . primary
462+ }
463+ size = { iconSizes . md }
464+ />
465+ </ Box >
466+ < Box >
467+ < Paragraph
468+ style = { { color : formatTextColor ( item ) , ...textStyle } }
469+ >
470+ { formatText ( item ) }
471+ </ Paragraph >
472+ </ Box >
473+ </ FlexBox >
474+ ) }
442475 { item === 'image_builder' && (
443476 < FlexBox
444477 onClick = { ( ) => selectSection ( item ) }
@@ -480,7 +513,8 @@ const Component = (props: any) => {
480513 item !== 'annotator' &&
481514 item !== 'alerter' &&
482515 item !== 'image_builder' &&
483- item !== 'artifact_store' && (
516+ item !== 'artifact_store' &&
517+ item !== 'model_registry' && (
484518 < FlexBox
485519 onClick = { ( ) => selectSection ( item ) }
486520 style = { {
0 commit comments