diff --git a/packages/web/src/components/ExecutionRow/index.tsx b/packages/web/src/components/ExecutionRow/index.tsx
index f56abcd1..114162cd 100644
--- a/packages/web/src/components/ExecutionRow/index.tsx
+++ b/packages/web/src/components/ExecutionRow/index.tsx
@@ -57,6 +57,16 @@ export default function ExecutionRow(
/>
)}
+
+
theme.palette.primary.main }}
/>
diff --git a/packages/web/src/graphql/queries/get-executions.ts b/packages/web/src/graphql/queries/get-executions.ts
index 1c015677..653426a9 100644
--- a/packages/web/src/graphql/queries/get-executions.ts
+++ b/packages/web/src/graphql/queries/get-executions.ts
@@ -13,6 +13,7 @@ export const GET_EXECUTIONS = gql`
testRun
createdAt
updatedAt
+ status
flow {
id
name
diff --git a/packages/web/src/locales/en.json b/packages/web/src/locales/en.json
index a18afad8..4d79ee2b 100644
--- a/packages/web/src/locales/en.json
+++ b/packages/web/src/locales/en.json
@@ -74,6 +74,8 @@
"executions.noExecutions": "There is no execution data point to show.",
"execution.executedAt": "executed {datetime}",
"execution.test": "Test run",
+ "execution.statusSuccess": "Success",
+ "execution.statusFailure": "Failure",
"execution.noDataTitle": "No data",
"execution.noDataMessage": "We successfully ran the execution, but there was no new data to process.",
"profileSettings.title": "My Profile",
@@ -86,4 +88,4 @@
"profileSettings.updatePassword": "Update password",
"notifications.title": "Notifications",
"notification.releasedAt": "Released {relativeDate}"
-}
+}
\ No newline at end of file