diff --git a/projects/komponentkartan/src/lib/controls/dropdown-select/dropdown-select.component.ts b/projects/komponentkartan/src/lib/controls/dropdown-select/dropdown-select.component.ts index 4bb157e32..ad15f82ff 100644 --- a/projects/komponentkartan/src/lib/controls/dropdown-select/dropdown-select.component.ts +++ b/projects/komponentkartan/src/lib/controls/dropdown-select/dropdown-select.component.ts @@ -80,7 +80,12 @@ export class DropdownSelectComponent implements OnChanges, AfterContentInit, Aft if (this.formControl != null) { this.formControl.valueAccessor = this; } - this.scrollbarConfig = new PerfectScrollbarConfig({ minScrollbarLength: 40 } as PerfectScrollbarConfigInterface); + this.scrollbarConfig = new PerfectScrollbarConfig( + { + minScrollbarLength: 40, + wheelPropagation: false + } as PerfectScrollbarConfigInterface + ); } ngOnChanges(changes: SimpleChanges) {