1
0
Fork 0
mirror of synced 2024-07-03 05:20:32 +12:00

Merge pull request #327 from Budibase/fix-email

fix backend workflow
This commit is contained in:
Martin McKeaveney 2020-06-04 14:08:11 +01:00 committed by GitHub
commit d53b0655af
4 changed files with 5 additions and 8 deletions

View file

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

View file

@ -40,7 +40,7 @@ exports.serverStrategy = () => ({
if (block.type === "CLIENT") continue if (block.type === "CLIENT") continue
const action = require(`../api/controllers/workflow/actions/${block.actionId}`) 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 = {
...this.context, ...this.context,

View file

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