mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Jira Software Node): Fix comments limit and add sorting (#9634)
This commit is contained in:
@@ -286,6 +286,23 @@ export const issueCommentFields: INodeProperties[] = [
|
||||
description:
|
||||
'Use expand to include additional information about comments in the response. This parameter accepts Rendered Body, which returns the comment body rendered in HTML.',
|
||||
},
|
||||
{
|
||||
displayName: 'Order By',
|
||||
name: 'orderBy',
|
||||
type: 'options',
|
||||
options: [
|
||||
{
|
||||
name: 'Created Ascending',
|
||||
value: '+created',
|
||||
},
|
||||
{
|
||||
name: 'Created Descending',
|
||||
value: '-created',
|
||||
},
|
||||
],
|
||||
default: 'created_asc',
|
||||
description: 'Order comments by the created date',
|
||||
},
|
||||
],
|
||||
},
|
||||
|
||||
|
||||
Reference in New Issue
Block a user