ATL-970: notifications should last longer

This commit is contained in:
Francesco Stasi 2021-03-23 18:38:11 +01:00 committed by Francesco Stasi
parent 80bddc238d
commit 1ab5634789
3 changed files with 3 additions and 3 deletions

View File

@ -61,7 +61,7 @@ export class BurnBootloader extends SketchContribution {
verify,
verbose
});
this.messageService.info('Done burning bootloader.', { timeout: 1000 });
this.messageService.info('Done burning bootloader.', { timeout: 3000 });
} catch (e) {
this.messageService.error(e.toString());
} finally {

View File

@ -148,7 +148,7 @@ export class UploadSketch extends SketchContribution {
} else {
await this.coreService.upload(options);
}
this.messageService.info('Done uploading.', { timeout: 1000 });
this.messageService.info('Done uploading.', { timeout: 3000 });
} catch (e) {
this.messageService.error(e.toString());
} finally {

View File

@ -109,7 +109,7 @@ export class VerifySketch extends SketchContribution {
sourceOverride,
compilerWarnings
});
this.messageService.info('Done compiling.', { timeout: 1000 });
this.messageService.info('Done compiling.', { timeout: 3000 });
} catch (e) {
this.messageService.error(e.toString());
} finally {