feat(web): add status in execution row
This commit is contained in:
@@ -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
|
<ArrowForwardIosIcon
|
||||||
sx={{ color: (theme) => theme.palette.primary.main }}
|
sx={{ color: (theme) => theme.palette.primary.main }}
|
||||||
/>
|
/>
|
||||||
|
@@ -13,6 +13,7 @@ export const GET_EXECUTIONS = gql`
|
|||||||
testRun
|
testRun
|
||||||
createdAt
|
createdAt
|
||||||
updatedAt
|
updatedAt
|
||||||
|
status
|
||||||
flow {
|
flow {
|
||||||
id
|
id
|
||||||
name
|
name
|
||||||
|
@@ -74,6 +74,8 @@
|
|||||||
"executions.noExecutions": "There is no execution data point to show.",
|
"executions.noExecutions": "There is no execution data point to show.",
|
||||||
"execution.executedAt": "executed {datetime}",
|
"execution.executedAt": "executed {datetime}",
|
||||||
"execution.test": "Test run",
|
"execution.test": "Test run",
|
||||||
|
"execution.statusSuccess": "Success",
|
||||||
|
"execution.statusFailure": "Failure",
|
||||||
"execution.noDataTitle": "No data",
|
"execution.noDataTitle": "No data",
|
||||||
"execution.noDataMessage": "We successfully ran the execution, but there was no new data to process.",
|
"execution.noDataMessage": "We successfully ran the execution, but there was no new data to process.",
|
||||||
"profileSettings.title": "My Profile",
|
"profileSettings.title": "My Profile",
|
||||||
|
Reference in New Issue
Block a user