🐛 Use correct workspace identifier for API requests in Orbit Node (#2855)

This commit is contained in:
Tom 2022-02-26 11:49:30 +01:00 committed by GitHub
parent 40e5bea514
commit 7451e94b03
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -114,7 +114,7 @@ export class Orbit implements INodeType {
for (const workspace of workspaces.data) {
returnData.push({
name: workspace.attributes.name,
value: workspace.id,
value: workspace.attributes.slug,
});
}
return returnData;