diff --git a/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte b/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte index 211a6512a2..53d50d57a3 100644 --- a/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte +++ b/packages/builder/src/components/backend/DatasourceNavigator/TableIntegrationMenu/IntegrationConfigForm.svelte @@ -177,7 +177,7 @@ showModal(configKey)} variables={$environment.variables} - type={schema[configKey].type} + type={configKey === "port" ? "string" : schema[configKey].type} on:change bind:value={config[configKey]} error={$validation.errors[configKey]}