mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Linear Node): Fix issue with data not always being returned (#9273)
Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
@@ -272,9 +272,7 @@ export class Linear implements INodeType {
|
||||
responseData = await linearApiRequestAllItems.call(this, 'data.issues', body);
|
||||
} else {
|
||||
const limit = this.getNodeParameter('limit', 0);
|
||||
body.variables.first = limit;
|
||||
responseData = await linearApiRequest.call(this, body);
|
||||
responseData = responseData.data.issues.nodes;
|
||||
responseData = await linearApiRequestAllItems.call(this, 'data.issues', body, limit);
|
||||
}
|
||||
}
|
||||
if (operation === 'update') {
|
||||
|
||||
Reference in New Issue
Block a user