diff --git a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ActionModal.svelte b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ActionModal.svelte index 66632fb2e0..6f0eb38816 100644 --- a/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ActionModal.svelte +++ b/packages/builder/src/components/automation/AutomationBuilder/FlowChart/ActionModal.svelte @@ -6,6 +6,8 @@ Body, Icon, notifications, + Tags, + Tag, } from "@budibase/bbui" import { automationStore, selectedAutomation } from "builderStore" import { admin, licensing } from "stores/portal" @@ -15,7 +17,7 @@ export let blockIdx export let lastStep - let syncWebhooksEnabled = $licensing.syncWebhooksEnabled + let syncWebhooksEnabled = false let collectBlockAllowedSteps = [TriggerStepID.APP, TriggerStepID.WEBHOOK] let collectBlockExists = $selectedAutomation.definition.steps.some( step => step.stepId === ActionStepID.COLLECT @@ -93,7 +95,7 @@ @@ -138,7 +140,13 @@
{action.name} - {#if isDisabled} + {#if isDisabled && !syncWebhooksEnabled} +
+ + Business + +
+ {:else if isDisabled} {/if}
@@ -173,6 +181,7 @@ display: flex; margin-left: var(--spacing-m); gap: var(--spacing-m); + align-items: center; } .item-list { display: grid; @@ -202,4 +211,8 @@ .disabled :global(.spectrum-Body) { color: var(--spectrum-global-color-gray-600); } + + .tag-color :global(.spectrum-Tags-item) { + background: var(--spectrum-global-color-gray-200); + }