Skip to content

Commit

Permalink
fix: env info overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zjy365 committed Feb 17, 2025
1 parent 4f069d0 commit 0ff4ad3
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ const AdvancedInfo = ({ app = MOCK_APP_DETAIL }: { app: AppDetailType }) => {
</AccordionButton>
<AccordionPanel>
<Flex mt={'8px'} gap={'16px'}>
<Box flex={'1 0 0'}>
<Box flex={'1 0 0'} width={'0px'}>
<Box fontSize={'12px'} fontWeight={400} color={'grayModern.600'}>
<Text>{t('Command')}</Text>
<Box
Expand Down Expand Up @@ -304,7 +304,6 @@ const AdvancedInfo = ({ app = MOCK_APP_DETAIL }: { app: AppDetailType }) => {
</AccordionPanel>
</AccordionItem>
</Accordion>

{detailConfigMap && (
<ConfigMapDetailModal {...detailConfigMap} onClose={() => setDetailConfigMap(undefined)} />
)}
Expand Down

0 comments on commit 0ff4ad3

Please sign in to comment.