fix backend workflow
This commit is contained in:
parent
f2760d05ad
commit
a92ab5cabb
|
@ -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%;
|
||||
|
|
|
@ -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")
|
||||
})
|
||||
|
||||
|
|
|
@ -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,
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue