Skip to content

Commit

Permalink
fix(templates:angular): more blank space before URL in featureUrls array
Browse files Browse the repository at this point in the history
  • Loading branch information
ViktorSlavov committed Aug 2, 2018
1 parent 16d65c4 commit 0625a66
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/angular/igx-ts/grid/grid-custom/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,8 +118,8 @@ class IgxCustomGridTemplate extends IgniteUIForAngularTemplate {
selectedFeatures = features.map((e, i) => {
anchorWrapper.href = featuresUrls[i];
anchorWrapper.text = e;
return `${anchorWrapper.start}${anchorWrapper.href}${anchorWrapper.middle}` +
`${anchorWrapper.text}${anchorWrapper.end} `;
return ` ${anchorWrapper.start}${anchorWrapper.href}${anchorWrapper.middle}` +
`${anchorWrapper.text}${anchorWrapper.end}`;
}).toString();
}
const extraConfig = {
Expand Down

0 comments on commit 0625a66

Please sign in to comment.