feat(web): add status in execution row

This commit is contained in:
Ali BARIN
2022-11-08 21:04:56 +01:00
parent bf009ae13b
commit 608038cbcc
3 changed files with 14 additions and 1 deletions

View File

@@ -57,6 +57,16 @@ export default function ExecutionRow(
/>
)}
<Chip
size="small"
color={execution.status === 'success' ? 'success' : 'error'}
label={formatMessage(
execution.status === 'success'
? 'execution.statusSuccess'
: 'execution.statusFailure'
)}
/>
<ArrowForwardIosIcon
sx={{ color: (theme) => theme.palette.primary.main }}
/>