Skip to content

Commit 773e3f4

Browse files
committed
Remove unused boolean HAS_25610
Fix prlinter issue Fix prlinter issue
1 parent 777d986 commit 773e3f4

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tools/@aws-cdk/spec2cdk/lib/cdk/resource-decider.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -153,15 +153,15 @@ export class ResourceDecider {
153153
summary: 'Tag Manager which manages the tags for this resource',
154154
},
155155
},
156-
initializer: (_: Expression) =>
156+
initializer: (props: Expression) =>
157157
new CDK_CORE.TagManager(
158158
this.tagManagerVariant(variant),
159159
expr.lit(this.resource.cloudFormationType),
160-
expr.UNDEFINED,
160+
$E(props)[originalName],
161161
expr.object({ tagPropertyName: expr.lit(originalName) }),
162162
),
163163
cfnValueToRender: {
164-
[originalName]: $this.tags.renderTags($this[rawTagsPropName]),
164+
[originalName]: $this.tags.renderTags(),
165165
},
166166
},
167167
{

0 commit comments

Comments
 (0)