From f65a5db478da0da65735bdc5bb09774f1d473ec9 Mon Sep 17 00:00:00 2001 From: Jonathan Bennetts Date: Fri, 15 Jul 2022 16:13:06 +0100 Subject: [PATCH] fix(Baserow Node): Fix issue that table names are not getting pulled in new version (#3721) --- packages/nodes-base/nodes/Baserow/Baserow.node.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/nodes-base/nodes/Baserow/Baserow.node.ts b/packages/nodes-base/nodes/Baserow/Baserow.node.ts index a9e8c8ca4..bc4202d36 100644 --- a/packages/nodes-base/nodes/Baserow/Baserow.node.ts +++ b/packages/nodes-base/nodes/Baserow/Baserow.node.ts @@ -129,7 +129,7 @@ export class Baserow implements INodeType { const credentials = await this.getCredentials('baserowApi') as BaserowCredentials; const jwtToken = await getJwtToken.call(this, credentials); const databaseId = this.getNodeParameter('databaseId', 0) as string; - const endpoint = `/api/database/tables/database/${databaseId}`; + const endpoint = `/api/database/tables/database/${databaseId}/`; const tables = await baserowApiRequest.call(this, 'GET', endpoint, {}, {}, jwtToken) as LoadedResource[]; return toOptions(tables); },