diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index 8b33aee5520..53d033effe8 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -668,6 +668,7 @@ export class MultiSelect implements OnInit,AfterViewInit,AfterContentInit,AfterV this.value = this.value.filter(val => !ObjectUtils.equals(val, chip, this.dataKey)); this.onModelChange(this.value); this.onChange.emit({ originalEvent: event, value: this.value }); + this.updateLabel(); this.updateFilledState(); }