From f050ce9ef5fd7341599f7885a2f1efa75541c3fb Mon Sep 17 00:00:00 2001 From: Daniel Freedman Date: Wed, 31 Jul 2019 12:04:20 -0700 Subject: [PATCH] Fix typing error in fixPlaceholder Upstream of change in http://cl/260969835 --- lib/mixins/template-stamp.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/mixins/template-stamp.js b/lib/mixins/template-stamp.js index e9e4a16da7..33717e65de 100644 --- a/lib/mixins/template-stamp.js +++ b/lib/mixins/template-stamp.js @@ -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); }