overlay fix

This commit is contained in:
Timo 2020-12-02 19:22:54 +02:00
parent 962b1d39af
commit 58df64a9ba
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ import { ComponentPortal } from '@angular/cdk/portal';
providedIn: 'root'
})
export class FileDropOverlayService {
private _mouseIn: boolean = false;
private _mouseIn = false;
private readonly _dropOverlayRef: OverlayRef;
constructor(private overlay: Overlay, private readonly _injector: Injector) {

View File

@ -16,7 +16,7 @@ export class FileUploadService {
static readonly MAX_PARALLEL_UPLOADS = 5;
files: FileUploadModel[] = [];
activeUploads: number = 0;
activeUploads = 0;
private _pendingUploads: UploadFile[] = [];
private _activeUploads: Subscription[] = [];