fix(Jira Software Node): Fix comments limit and add sorting (#9634)

This commit is contained in:
pemontto
2024-06-05 15:26:15 +01:00
committed by GitHub
parent c92765dcdb
commit a946ead46e
2 changed files with 18 additions and 1 deletions

View File

@@ -1280,7 +1280,7 @@ export class Jira implements INodeType {
);
} else {
const limit = this.getNodeParameter('limit', i);
body.maxResults = limit;
qs.maxResults = limit;
responseData = await jiraSoftwareCloudApiRequest.call(
this,
`/api/${apiVersion}/issue/${issueKey}/comment`,