From 154648e5ea6dd6eced1219a0089fa818420c108e Mon Sep 17 00:00:00 2001 From: Peter Clement Date: Thu, 2 Feb 2023 13:57:14 +0000 Subject: [PATCH] ensure port input is a string type --- .../TableIntegrationMenu/IntegrationConfigForm.svelte | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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]}