Skip to content

Commit 40d5881

Browse files
Remove yet another string concatenation to a template string
1 parent 0e6daa7 commit 40d5881

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/elements/dom-repeat.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -384,7 +384,7 @@
384384
if (prop == this.as) {
385385
this.items[idx] = value;
386386
}
387-
let path = Polymer.Path.translate(this.as, `${JSCompiler_renameProperty('items', this)}.` + idx, prop);
387+
let path = Polymer.Path.translate(this.as, `${JSCompiler_renameProperty('items', this)}.${idx}`, prop);
388388
this.notifyPath(path, value);
389389
}
390390
}

0 commit comments

Comments
 (0)