Skip to content

Commit

Permalink
Fix host prop merging.
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinpschaaf committed Jun 28, 2019
1 parent 39207cc commit e4eb9f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mixins/property-effects.js
Original file line number Diff line number Diff line change
Expand Up @@ -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 = '{';
Expand Down

0 comments on commit e4eb9f2

Please sign in to comment.