From c9208fd672d629209f58f6df8a397ebe4e5286d4 Mon Sep 17 00:00:00 2001 From: Kevin Schaaf Date: Wed, 31 Jan 2018 11:21:45 -0800 Subject: [PATCH] Fix nit. --- lib/utils/templatize.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/utils/templatize.html b/lib/utils/templatize.html index 0430f3c0dd..18a1161095 100644 --- a/lib/utils/templatize.html +++ b/lib/utils/templatize.html @@ -182,7 +182,7 @@ const parent = n.__polymerParent__; const replace = n.__polymerReplaced__; if (parent && replace) { - parent.replaceChild(n, n.__polymerReplaced__); + parent.replaceChild(n, replace); } } }