mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix(Switch Node): Allow sortable Switch rules (#7555)
Github issue / Community forum post (link here to close automatically): Signed-off-by: Oleg Ivaniv <me@olegivaniv.com>
This commit is contained in:
parent
655efeaf66
commit
7a56e58a60
|
@ -152,6 +152,7 @@ export class SwitchV2 implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -226,6 +227,7 @@ export class SwitchV2 implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -299,6 +301,7 @@ export class SwitchV2 implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
@ -389,6 +392,7 @@ export class SwitchV2 implements INodeType {
|
|||
type: 'fixedCollection',
|
||||
typeOptions: {
|
||||
multipleValues: true,
|
||||
sortable: true,
|
||||
},
|
||||
displayOptions: {
|
||||
show: {
|
||||
|
|
Loading…
Reference in a new issue