Skip to content

Commit

Permalink
Reintroduced 'fix' block at :311 results in duplication
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrl-freak authored Jun 10, 2022
1 parent 26afe63 commit 86e33fc
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions packages/nodes-base/nodes/Aws/DynamoDB/AwsDynamoDB.node.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,11 +320,9 @@ export class AwsDynamoDB implements INodeType {
const {
indexName,
projectionExpression,
filterExpression,
} = this.getNodeParameter('options', i) as {
indexName: string;
projectionExpression: string;
filterExpression: string;
};

const expressionAttributeName = adjustExpressionAttributeName(eanUi);
Expand All @@ -347,10 +345,6 @@ export class AwsDynamoDB implements INodeType {
body.ProjectionExpression = projectionExpression;
}

if (filterExpression) {
body.FilterExpression = filterExpression;
}

if (select) {
body.Select = select;
}
Expand Down

0 comments on commit 86e33fc

Please sign in to comment.