Merge pull request #2960 from Budibase/bug/fix-automation-ordering
fix issue where automation was not being added in the correct order
This commit is contained in:
commit
ebe930b1fa
|
@ -5,7 +5,7 @@
|
|||
// ***********************************************
|
||||
//
|
||||
|
||||
Cypress.on('uncaught:exception', (err, runnable) => {
|
||||
Cypress.on("uncaught:exception", () => {
|
||||
return false
|
||||
})
|
||||
|
||||
|
|
|
@ -4,10 +4,11 @@
|
|||
import { externalActions } from "./ExternalActions"
|
||||
|
||||
export let blockIdx
|
||||
export let blockComplete
|
||||
|
||||
let selectedAction
|
||||
let actionVal
|
||||
let actions = Object.entries($automationStore.blockDefinitions.ACTION)
|
||||
export let blockComplete
|
||||
|
||||
const external = actions.reduce((acc, elm) => {
|
||||
const [k, v] = elm
|
||||
|
@ -36,10 +37,9 @@
|
|||
actionVal.stepId,
|
||||
actionVal
|
||||
)
|
||||
automationStore.actions.addBlockToAutomation(newBlock)
|
||||
automationStore.actions.addBlockToAutomation(newBlock, blockIdx + 1)
|
||||
await automationStore.actions.save(
|
||||
$automationStore.selectedAutomation?.automation,
|
||||
blockIdx
|
||||
$automationStore.selectedAutomation?.automation
|
||||
)
|
||||
}
|
||||
</script>
|
||||
|
|
|
@ -151,7 +151,7 @@
|
|||
>
|
||||
{/if}
|
||||
<Button
|
||||
disabled={disableAddButton ? true : !hasCompletedInputs}
|
||||
disabled={!hasCompletedInputs}
|
||||
on:click={() => {
|
||||
setupToggled = false
|
||||
actionModal.show()
|
||||
|
|
Loading…
Reference in New Issue