diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index c2dd53d9799..e36e8a8a48e 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -1093,10 +1093,10 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft const modelValue = this.modelValue(); const visibleOptions = this.visibleOptions(); if (visibleOptions && ObjectUtils.isNotEmpty(visibleOptions) && modelValue) { - if(this.optionValue && this.optionLabel) { - this.selectedOptions = visibleOptions.filter((option) => modelValue.includes(option[this.optionLabel]) || modelValue.includes(option[this.optionValue])); + if (this.optionValue && this.optionLabel) { + this.selectedOptions = visibleOptions.filter((option) => modelValue.includes(option[this.optionLabel]) || modelValue.includes(option[this.optionValue])); } else { - this.selectedOptions = [...modelValue] + this.selectedOptions = [...modelValue]; } } }); diff --git a/src/app/components/paginator/paginator.ts b/src/app/components/paginator/paginator.ts index 0aa1e34209a..b3f39578822 100755 --- a/src/app/components/paginator/paginator.ts +++ b/src/app/components/paginator/paginator.ts @@ -53,7 +53,15 @@ import { PaginatorState } from './paginator.interface'; - @@ -84,7 +92,16 @@ import { PaginatorState } from './paginator.interface'; -