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

fix backend workflow

This commit is contained in:
Martin McKeaveney 2020-06-04 13:55:52 +01:00
parent f2760d05ad
commit a92ab5cabb
4 changed files with 5 additions and 8 deletions

View file

@ -64,8 +64,8 @@
}
</script>
<button class="newevent" on:click={() => openModal()} >
<i class="icon ri-add-circle-fill" />
<button class="newevent" on:click={() => openModal()}>
<i class="icon ri-add-circle-fill" />
Create New Event
</button>
@ -86,7 +86,6 @@
</div>
<style>
.root {
font-size: 10pt;
width: 100%;

View file

@ -22,7 +22,7 @@ async function executeRelevantWorkflows(event, eventType) {
}
}
emitter.on("action", async function(event) {
emitter.on("record:save", async function(event) {
await executeRelevantWorkflows(event, "record:save")
})

View file

@ -40,7 +40,7 @@ exports.serverStrategy = () => ({
if (block.type === "CLIENT") continue
const action = require(`../api/controllers/workflow/actions/${block.actionId}`)
const response = await action(this.bindContextArgs(block.args))
const response = await action({ args: this.bindContextArgs(block.args) })
this.context = {
...this.context,

View file

@ -25,7 +25,6 @@
} else {
throw new Error("Failed to fetch records.", response)
}
}
$: if (model) fetchData()
@ -36,8 +35,7 @@
</script>
<section class:grid={layout === 'grid'} class:list={layout === 'list'}>
<div class="data-card" bind:this={target}>
</div>
<div class="data-card" bind:this={target} />
</section>
<style>