From 40d5881401dce2ec416770402b77ab7a5646aa54 Mon Sep 17 00:00:00 2001 From: Chad Killingsworth Date: Wed, 30 Jan 2019 11:11:12 -0600 Subject: [PATCH] Remove yet another string concatenation to a template string --- lib/elements/dom-repeat.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/elements/dom-repeat.html b/lib/elements/dom-repeat.html index 96025ea600..b0365cfa71 100644 --- a/lib/elements/dom-repeat.html +++ b/lib/elements/dom-repeat.html @@ -384,7 +384,7 @@ if (prop == this.as) { this.items[idx] = value; } - let path = Polymer.Path.translate(this.as, `${JSCompiler_renameProperty('items', this)}.` + idx, prop); + let path = Polymer.Path.translate(this.as, `${JSCompiler_renameProperty('items', this)}.${idx}`, prop); this.notifyPath(path, value); } }