Skip to content

Commit

Permalink
fix: #14058 || MultiSelect onPanelShow is not fired when there are no…
Browse files Browse the repository at this point in the history
… options (empty array / filtered)
  • Loading branch information
ashikjs committed Nov 14, 2023
1 parent b280af2 commit ab7dbf2
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 @@ -1850,8 +1850,8 @@ export class MultiSelect implements OnInit, AfterViewInit, AfterContentInit, Aft
selectedListItem.scrollIntoView({ block: 'nearest', inline: 'center' });
}
}
this.onPanelShow.emit();
}
this.onPanelShow.emit();
case 'void':
this.itemsWrapper = null;
this.onModelTouched();
Expand Down

0 comments on commit ab7dbf2

Please sign in to comment.