diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index 2efab0c335c..2a77a62e839 100644 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -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; }