diff --git a/src/app/components/multiselect/multiselect.ts b/src/app/components/multiselect/multiselect.ts index c2c469c94ed..de63585f7f7 100755 --- a/src/app/components/multiselect/multiselect.ts +++ b/src/app/components/multiselect/multiselect.ts @@ -1352,7 +1352,7 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft } isEmpty() { - return !this._options() || (this._options() && this._options().length === 0); + return !this._options() || (this.visibleOptions() && this.visibleOptions().length === 0); } getOptionIndex(index, scrollerOptions) {