fixed lint err

This commit is contained in:
Timo 2021-01-09 14:37:31 +02:00
parent 0ed0c70bf4
commit 32f29c946f

View File

@ -45,7 +45,7 @@ export class FileUploadService {
const maxSizeMB = this._appConfigService.getConfig(AppConfigKey.MAX_FILE_SIZE_MB, 50);
const maxSizeBytes = maxSizeMB * 1024 * 1024;
const projectFiles = this._appStateService.activeProject.files;
let option: 'overwrite' | 'no-overwrite' | undefined = undefined;
let option: 'overwrite' | 'no-overwrite' | undefined;
for (let idx = 0; idx < files.length; ++idx) {
const file = files[idx];
let currentOption = option;