diff --git a/src/app/app.component.ts b/src/app/app.component.ts index 68bce313..1e1ab5cb 100644 --- a/src/app/app.component.ts +++ b/src/app/app.component.ts @@ -63,10 +63,9 @@ export class AppComponent implements OnInit, OnDestroy { this.dragoverSub = this.dragoverSubject .pipe( - debounceTime(150) + debounceTime(1500) ) - .subscribe(() => { - console.warn('disable drag'); + .subscribe(() => { this.drag = false; }) }