Fixed re-upload file by file select dialog

This commit is contained in:
Adina Țeudan 2021-06-03 20:44:07 +03:00
parent 3748b2a94f
commit ae0c306e2d

View File

@ -1,4 +1,12 @@
import { Component, HostListener, Injector, OnDestroy, OnInit, ViewChild } from '@angular/core';
import {
Component,
ElementRef,
HostListener,
Injector,
OnDestroy,
OnInit,
ViewChild
} from '@angular/core';
import { NavigationStart, Router } from '@angular/router';
import { NotificationService, NotificationType } from '@services/notification.service';
import { AppStateService } from '@state/app-state.service';
@ -63,6 +71,7 @@ export class DossierOverviewScreenComponent
@ViewChild('statusFilter') private _statusFilterComponent: FilterComponent;
@ViewChild('peopleFilter') private _peopleFilterComponent: FilterComponent;
@ViewChild('needsWorkFilter') private _needsWorkFilterComponent: FilterComponent;
@ViewChild('fileInput') private _fileInput: ElementRef;
constructor(
readonly permissionsService: PermissionsService,
@ -238,6 +247,7 @@ export class DossierOverviewScreenComponent
async uploadFiles(files: File[] | FileList) {
await this._uploadFiles(convertFiles(files, this.activeDossier));
this._fileInput.nativeElement.value = null;
}
fileLink(fileStatus: FileStatusWrapper) {