Skip to content

Commit

Permalink
fix(APITemplate.io Node): Fix action description for create pdf (no-c…
Browse files Browse the repository at this point in the history
…hangelog) (#7226)

Github issue / Community forum post (link here to close automatically):
#7224
  • Loading branch information
Joffcom authored and netroy committed Sep 25, 2023
1 parent 1589789 commit bada252
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion packages/nodes-base/nodes/ApiTemplateIo/ApiTemplateIo.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,27 @@ export class ApiTemplateIo implements INodeType {
],
displayOptions: {
show: {
resource: ['image', 'pdf'],
resource: ['image'],
},
},
},
{
displayName: 'Operation',
name: 'operation',
type: 'options',
noDataExpression: true,
default: 'create',
required: true,
options: [
{
name: 'Create',
value: 'create',
action: 'Create a pdf',
},
],
displayOptions: {
show: {
resource: ['pdf'],
},
},
},
Expand Down

0 comments on commit bada252

Please sign in to comment.