1
0
Fork 0
mirror of synced 2024-06-28 02:50:50 +12:00

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 387eecca0f
commit 4378a3a657
2 changed files with 2 additions and 2 deletions

View file

@ -28,7 +28,7 @@
let blockComplete
$: 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"

View file

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