Skip to content

Commit

Permalink
Merge pull request #5578 from Polymer/fix-placeholder-typing
Browse files Browse the repository at this point in the history
Fix typing error in fixPlaceholder
  • Loading branch information
dfreedm authored Jul 31, 2019
2 parents 7d6d715 + f050ce9 commit 96c125e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mixins/template-stamp.js
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export const TemplateStamp = dedupingMixin(
// For ShadyDom optimization, indicating there is an insertion point
templateInfo.hasInsertionPoint = true;
}
fixPlaceholder(node);
fixPlaceholder(element);
if (element.firstChild) {
this._parseTemplateChildNodes(element, templateInfo, nodeInfo);
}
Expand Down

0 comments on commit 96c125e

Please sign in to comment.