From 5a651813cdfaef396b4088db2d9b291015400367 Mon Sep 17 00:00:00 2001 From: Giulio Andreini Date: Thu, 19 Sep 2024 17:54:55 +0200 Subject: [PATCH] Copy tweaks --- .../RemoveDuplicates/v2/RemoveDuplicatesV2.description.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/packages/nodes-base/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.ts b/packages/nodes-base/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.ts index 91dbaeda86..f478e4e84f 100644 --- a/packages/nodes-base/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.ts +++ b/packages/nodes-base/nodes/Transform/RemoveDuplicates/v2/RemoveDuplicatesV2.description.ts @@ -43,13 +43,13 @@ const logicOptions = [ name: 'Remove Items Up to Stored Incremental Key', value: 'removeItemsUpToStoredIncrementalKey', description: - 'Works with incremental key values, removes all input items with key values up to the stored value. Stores only the highest key value.', + 'Works with incremental key values, removes all input items with key values up to the stored value', }, { name: 'Remove Items Up to Stored Date', value: 'RemoveItemsUpToStoredDate', description: - 'Works with date key values, removes all input items with key values up to the stored value. Stores only the latest key value.', + 'Works with date key values, removes all input items with key values up to the stored date', }, ]; const manageDatabaseModeOptions = [ @@ -131,7 +131,8 @@ export const removeDuplicatesNodeFields: INodeProperties[] = [ noDataExpression: true, options: logicOptions, default: 'removeItemsWithAlreadySeenKeyValues', - description: 'How to select input items to remove based on key values previously processed', + description: + 'How to select input items to remove by comparing them with key values previously processed', displayOptions: { show: { operation: ['removeItemsSeenInPreviousExecutions'],