fix(APITemplate.io Node): Fix action description for create pdf (no-changelog) (#7226)

Github issue / Community forum post (link here to close automatically):
https://github.com/n8n-io/n8n/issues/7224
This commit is contained in:
Jon 2023-09-22 07:27:00 +01:00 committed by GitHub
parent bf74f09d69
commit c0df5cdfd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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'],
},
},
},