Skip to content

Commit

Permalink
Merge pull request #3860 from CoachHockey/patch-1
Browse files Browse the repository at this point in the history
Update Multiselect to Include Space After Comma
  • Loading branch information
cagataycivici authored Sep 12, 2017
2 parents 6bceb74 + de18a8b commit 94caf62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/components/multiselect/multiselect.ts
Original file line number Diff line number Diff line change
Expand Up @@ -340,7 +340,7 @@ export class MultiSelect implements OnInit,AfterViewInit,AfterContentInit,AfterV
let itemLabel = this.findLabelByValue(this.value[i]);
if (itemLabel) {
if(label.length > 0) {
label = label + ',';
label = label + ', ';
}
label = label + itemLabel;
}
Expand Down

0 comments on commit 94caf62

Please sign in to comment.