diff --git a/packages/builder/src/builderStore/store/automation/index.js b/packages/builder/src/builderStore/store/automation/index.js index b6a194199..3f0743aa1 100644 --- a/packages/builder/src/builderStore/store/automation/index.js +++ b/packages/builder/src/builderStore/store/automation/index.js @@ -20,7 +20,9 @@ const automationActions = store => ({ } // if previously selected find the new obj and select it if (selected) { - selected = jsonResponses[0].filter(automation => automation._id === selected._id) + selected = jsonResponses[0].filter( + automation => automation._id === selected._id + ) state.selectedAutomation = new Automation(selected[0]) } return state diff --git a/packages/builder/src/components/automation/AutomationPanel/BlockList/CreateWebhookModal.svelte b/packages/builder/src/components/automation/AutomationPanel/BlockList/CreateWebhookModal.svelte index 020293b4b..02963e59e 100644 --- a/packages/builder/src/components/automation/AutomationPanel/BlockList/CreateWebhookModal.svelte +++ b/packages/builder/src/components/automation/AutomationPanel/BlockList/CreateWebhookModal.svelte @@ -52,18 +52,17 @@ confirmText="Finished" cancelText="Skip" disabled={!valid}> -
To configure a webhook we need to create a schema for your webhook to validate against. - Use the URL shown below and send a POST request to it with a JSON body in the format that - your webhook should use!
-+ To configure a webhook we need to create a schema for your webhook to + validate against. Use the URL shown below and send a + POST + request to it with a JSON body in the format that your webhook should use! +
+
- {schema}
-
+ {schema}