mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
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:
parent
bf74f09d69
commit
c0df5cdfd4
|
@ -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'],
|
||||
},
|
||||
},
|
||||
},
|
||||
|
|
Loading…
Reference in a new issue