diff --git a/src/app/components/dropdown/dropdown.ts b/src/app/components/dropdown/dropdown.ts index cedbb893313..58c7842f84b 100755 --- a/src/app/components/dropdown/dropdown.ts +++ b/src/app/components/dropdown/dropdown.ts @@ -1347,6 +1347,9 @@ export class Dropdown implements OnInit, AfterViewInit, AfterContentInit, AfterV this.clicked.set(false); this.searchValue = ''; + if (this.overlayOptions?.mode === 'modal') { + DomHandler.unblockBodyScroll(); + } if (this.filter && this.resetFilterOnHide) { this.resetFilter(); }