mirror of
https://github.com/n8n-io/n8n.git
synced 2025-02-21 02:56:40 -08:00
✨ Set subtitle on Chargebee-Node and fix issue with wrong
default value
This commit is contained in:
parent
be1da6d9e1
commit
0c28799dac
|
@ -30,6 +30,7 @@ export class Chargebee implements INodeType {
|
||||||
icon: 'file:chargebee.png',
|
icon: 'file:chargebee.png',
|
||||||
group: ['input'],
|
group: ['input'],
|
||||||
version: 1,
|
version: 1,
|
||||||
|
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
|
||||||
description: 'Retrieve data from Chargebee API',
|
description: 'Retrieve data from Chargebee API',
|
||||||
defaults: {
|
defaults: {
|
||||||
name: 'Chargebee',
|
name: 'Chargebee',
|
||||||
|
@ -201,7 +202,7 @@ export class Chargebee implements INodeType {
|
||||||
{
|
{
|
||||||
displayName: 'Operation',
|
displayName: 'Operation',
|
||||||
name: 'operation',
|
name: 'operation',
|
||||||
default: 'listInvoices',
|
default: 'list',
|
||||||
description: 'The operation to perform.',
|
description: 'The operation to perform.',
|
||||||
type: 'options',
|
type: 'options',
|
||||||
displayOptions: {
|
displayOptions: {
|
||||||
|
|
Loading…
Reference in a new issue