1
0
Fork 0
mirror of synced 2024-06-26 10:00:41 +12:00

Fixing an issue with test panel not updating when new test data comes in.

This commit is contained in:
mike12345567 2022-07-27 16:47:19 +01:00
parent 27162c47e0
commit ba1c5abf43

View file

@ -5,9 +5,8 @@
import { ActionStepID } from "constants/backend/automations"
export let automation
export let testResults
let blocks
let blocks, testResults
$: {
blocks = []
@ -18,15 +17,11 @@
blocks = blocks
.concat(automation.definition.steps || [])
.filter(x => x.stepId !== ActionStepID.LOOP)
} else if (testResults) {
blocks = testResults.steps || []
}
}
$: {
if (!testResults) {
testResults = $automationStore.selectedAutomation?.testResults
} else if ($automationStore.selectedAutomation) {
automation = $automationStore.selectedAutomation
}
}
$: testResults = $automationStore.selectedAutomation?.testResults
</script>
<div class="title">