Skip to content

Commit

Permalink
fix success
Browse files Browse the repository at this point in the history
  • Loading branch information
zjy365 committed Sep 13, 2023
1 parent 8d6fcfe commit 1e87680
Showing 1 changed file with 4 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ export default function AppBaseInfo({ appName }: { appName: string }) {
>
<Box
py="10px"
px="20px"
pl="20px"
position={'relative'}
_after={{
content: '""',
Expand All @@ -73,13 +73,9 @@ export default function AppBaseInfo({ appName }: { appName: string }) {
borderColor: jobItem.status ? '#33BABB' : '#FF8492'
}}
>
<Flex lineHeight={1} mb={2} alignItems={'center'}>
<Box fontWeight={'bold'}>
{jobItem.status ? t('base.Success') : t('Pause Error')},
</Box>
<Box ml={2} fontWeight={'bold'}>
{t('Executed')} {jobItem.startTime}
</Box>
<Flex mb={2} alignItems={'center'} fontWeight={'bold'}>
{jobItem.status ? t('base.Success') : t('Pause Error')}, {t('Executed')}
{jobItem.startTime}
</Flex>
<Box color={'blackAlpha.700'}>
{jobItem?.events?.map((event) => {
Expand Down

0 comments on commit 1e87680

Please sign in to comment.