Browse Source

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.

pull/4434/head
mike12345567 5 years ago
parent
commit
44f9ae0682
  1. 2
      packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte
  2. 2
      packages/server/src/automations/steps/executeQuery.js

2
packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte

@ -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"

2
packages/server/src/automations/steps/executeQuery.js

@ -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,

Loading…
Cancel
Save