From fa5e3ba2a898baefdce165907a5c9b22a0957eeb Mon Sep 17 00:00:00 2001 From: Bryan Date: Thu, 31 Aug 2023 14:52:05 +0800 Subject: [PATCH] fix(frontend): allow using Docker in Flow (#2201) --- frontend/src/lib/components/flows/content/FlowInputs.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/lib/components/flows/content/FlowInputs.svelte b/frontend/src/lib/components/flows/content/FlowInputs.svelte index 81b9925cd1..bf837cbc63 100644 --- a/frontend/src/lib/components/flows/content/FlowInputs.svelte +++ b/frontend/src/lib/components/flows/content/FlowInputs.svelte @@ -204,7 +204,7 @@ label={`Docker`} lang="docker" on:click={() => { - if (isCloudHosted() || true) { + if (isCloudHosted()) { sendUserToast( 'You cannot use Docker scripts on the multi-tenant platform. Use a dedicated instance or self-host windmill instead.', true,