mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-20 03:12:15 +00:00
fix(Linear Node): Fix issue with single item not being returned (#5193)
This commit is contained in:
committed by
GitHub
parent
454375077f
commit
e810966a3b
@@ -202,7 +202,7 @@ export class Linear implements INodeType {
|
||||
};
|
||||
|
||||
responseData = await linearApiRequest.call(this, body);
|
||||
responseData = responseData.data?.issues?.nodes[0];
|
||||
responseData = responseData.data.issue;
|
||||
}
|
||||
if (operation === 'getAll') {
|
||||
const returnAll = this.getNodeParameter('returnAll', i);
|
||||
|
||||
Reference in New Issue
Block a user