diff --git a/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte b/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte index 1417de6dab..e1caa15fd0 100644 --- a/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte +++ b/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte @@ -44,7 +44,7 @@ // run the validation whenever the config changes $: validation.check(config) // dispatch the validation result - $: dispatch("valid", $validation.valid) + $: dispatch("valid", Object.keys($validation.errors).length === 0) let addButton