1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-21 02:33:46 +00:00

dismiss export screen when success

This commit is contained in:
Kyle Spearrin
2018-01-15 21:59:25 -05:00
parent 4f1880b0f6
commit 6ab4086330
2 changed files with 4 additions and 2 deletions

View File

@@ -42,6 +42,7 @@ export class ExportController {
const csv = await this.getCsv();
this.$analytics.eventTrack('Exported Data');
this.downloadFile(csv);
this.$state.go('tabs.tools', { animation: 'out-slide-down' });
} else {
this.toastr.error(this.i18n.invalidMasterPassword, this.i18n.errorsOccurred);
}