Skip to content

Commit

Permalink
Remove yet another string concatenation to a template string
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadKillingsworth committed Jan 30, 2019
1 parent 0e6daa7 commit 40d5881
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/elements/dom-repeat.html
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
}
Expand Down

0 comments on commit 40d5881

Please sign in to comment.