From e0ad0e7a5a1a249ca3223654b5f756b7a63b21e9 Mon Sep 17 00:00:00 2001 From: Simeon Widdis Date: Tue, 16 Apr 2024 14:31:36 -0700 Subject: [PATCH] Fix broken data source usage ref Signed-off-by: Simeon Widdis --- .../integrations/components/create_integration_helpers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/components/integrations/components/create_integration_helpers.ts b/public/components/integrations/components/create_integration_helpers.ts index 8b499f125c..1ef8c71ead 100644 --- a/public/components/integrations/components/create_integration_helpers.ts +++ b/public/components/integrations/components/create_integration_helpers.ts @@ -314,7 +314,7 @@ export async function addIntegrationRequest( }; if (dataSourceInfo) { createReqBody.dataSource = dataSourceInfo.dataSource; - createReqBody.tableName = dataSourceInfo.dataSource; + createReqBody.tableName = dataSourceInfo.tableName; } let response: boolean = await http