diff --git a/packages/builder/cypress/integration/createAutomation.spec.js b/packages/builder/cypress/integration/createAutomation.spec.js index efd3c7d023..6be0e07e04 100644 --- a/packages/builder/cypress/integration/createAutomation.spec.js +++ b/packages/builder/cypress/integration/createAutomation.spec.js @@ -19,19 +19,19 @@ context("Create a automation", () => { // Setup trigger cy.contains("Setup").click() - cy.get(".spectrum-Picker-label").click() + cy.get(".spectrum-Picker-label").first().click() cy.wait(500) cy.contains("dog").click() cy.wait(2000) // Create action - cy.get(".block > .spectrum-Icon").click() + cy.get(".block > .spectrum-Icon").first().click() cy.get(".modal-inner-wrapper").within(() => { cy.wait(1000) cy.contains("Create Row").trigger('mouseover').click().click() cy.get(".spectrum-Button--cta").click() }) cy.contains("Setup").click() - cy.get(".spectrum-Picker-label").click() + cy.get(".spectrum-Picker-label").first().click() cy.contains("dog").click() cy.get(".spectrum-Textfield-input") .first() @@ -43,7 +43,7 @@ context("Create a automation", () => { cy.get(".modal-inner-wrapper").within(() => { cy.wait(1000) - cy.get(".spectrum-Picker-label").click() + cy.get(".spectrum-Picker-label").first().click() cy.contains("dog").click() cy.wait(1000) cy.get(".spectrum-Textfield-input") diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte index 984c4e9061..0b3344b609 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/FlowItem.svelte @@ -29,7 +29,9 @@ let blockComplete $: rowControl = $automationStore.selectedAutomation.automation.rowControl - + $: showBindingPicker = + block.stepId === "CREATE_ROW" || block.stepId === "UPDATE_ROW" + $: console.log(showBindingPicker) $: testResult = $automationStore.selectedAutomation.testResults?.steps.filter( step => (block.id ? step.id === block.id : step.stepId === block.stepId) ) @@ -153,17 +155,19 @@ {#if !isTrigger}
-
- +
+ {/if}
deleteStep()}>