mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-24 20:24:05 -08:00
⚡ Make it possible to sort your added values (#1425)
This commit is contained in:
parent
c1ddb6c000
commit
118b754449
|
@ -31,6 +31,7 @@ export class If implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
description: 'The type of values to compare.',
|
||||
default: {},
|
||||
|
|
|
@ -39,6 +39,7 @@ export class RenameKeys implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
default: {},
|
||||
options: [
|
||||
|
|
|
@ -38,6 +38,7 @@ export class Set implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
description: 'The value to set.',
|
||||
default: {},
|
||||
|
|
Loading…
Reference in a new issue