From e4eb9f2262cd74b1d1748416950759d6a7422f94 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Thu, 27 Jun 2019 21:04:57 -0700 Subject: [PATCH] Fix host prop merging. --- lib/mixins/property-effects.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/mixins/property-effects.js b/lib/mixins/property-effects.js index 39c24a9f35..6484e2d5f4 100644 --- a/lib/mixins/property-effects.js +++ b/lib/mixins/property-effects.js @@ -2966,8 +2966,8 @@ export const PropertyEffects = dedupingMixin(superClass => { if (!removeNestedTemplates) { nodeInfo.parentInfo.noted = true; } - templateInfo.hostProps = - Object.assign(nestedTemplateInfo.hostProps || {}, hostProps); + templateInfo.hostProps = + Object.assign(templateInfo.hostProps || {}, hostProps); } } else { let mode = '{';