diff --git a/packages/builder/src/builderStore/store/automation/index.js b/packages/builder/src/builderStore/store/automation/index.js
index 73e3d83832..b409ee5ffd 100644
--- a/packages/builder/src/builderStore/store/automation/index.js
+++ b/packages/builder/src/builderStore/store/automation/index.js
@@ -122,10 +122,12 @@ const automationActions = store => ({
return state
})
},
- getLogs: async (automationId, startDate) => {
+ getLogs: async ({ automationId, startDate, status, page } = {}) => {
return await API.getAutomationLogs({
automationId,
startDate,
+ status,
+ page,
})
},
addTestDataToAutomation: data => {
diff --git a/packages/builder/src/components/portal/overview/HistoryTab.svelte b/packages/builder/src/components/portal/overview/HistoryTab.svelte
index 7925419091..0feeb7c7e1 100644
--- a/packages/builder/src/components/portal/overview/HistoryTab.svelte
+++ b/packages/builder/src/components/portal/overview/HistoryTab.svelte
@@ -1,5 +1,5 @@
@@ -65,13 +107,23 @@
{#if runHistory}
@@ -95,6 +147,15 @@
/>
+