fix(Item Lists Node): Don't check same type in remove duplicates operation (#7678)

Github issue / Community forum post (link here to close automatically):

---------

Co-authored-by: Michael Kret <michael.k@radency.com>
This commit is contained in:
Marcus
2023-11-21 13:10:59 +01:00
committed by GitHub
parent 366cd672a7
commit 4f307646f3
5 changed files with 334 additions and 16 deletions

View File

@@ -14,7 +14,7 @@ export class ItemLists extends VersionedNodeType {
group: ['input'],
subtitle: '={{$parameter["operation"] + ": " + $parameter["resource"]}}',
description: 'Helper for working with lists of items and transforming arrays',
defaultVersion: 3,
defaultVersion: 3.1,
};
const nodeVersions: IVersionedNodeType['nodeVersions'] = {
@@ -23,6 +23,7 @@ export class ItemLists extends VersionedNodeType {
2.1: new ItemListsV2(baseDescription),
2.2: new ItemListsV2(baseDescription),
3: new ItemListsV3(baseDescription),
3.1: new ItemListsV3(baseDescription),
};
super(nodeVersions, baseDescription);