Fixing issue where any two automations steps of the same type executed in the same automation would have the same response output in the frontend, this was a visual bug. Also fixing an issue introduced by REST update that broke the query controller.

This commit is contained in:
mike12345567 2022-01-11 17:14:04 +00:00
parent b15f003c8c
commit 44f9ae0682
2 changed files with 2 additions and 2 deletions

View File

@ -28,7 +28,7 @@
let blockComplete let blockComplete
$: testResult = $automationStore.selectedAutomation.testResults?.steps.filter( $: testResult = $automationStore.selectedAutomation.testResults?.steps.filter(
step => step.stepId === block.stepId step => (block.id ? step.id === block.id : step.stepId === block.stepId)
) )
$: isTrigger = block.type === "TRIGGER" $: isTrigger = block.type === "TRIGGER"

View File

@ -72,7 +72,7 @@ exports.run = async function ({ inputs, appId, emitter }) {
}) })
try { try {
await queryController.execute(ctx) await queryController.executeV1(ctx)
const { data, ...rest } = ctx.body const { data, ...rest } = ctx.body
return { return {
response: data, response: data,