1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-05 05:17:40 +02:00

Fix missing confirmation toast on vault export (#9398)

Co-authored-by: Daniel James Smith <djsmith85@users.noreply.github.com>
This commit is contained in:
Daniel James Smith 2024-05-28 20:35:10 +02:00 committed by GitHub
parent 3fc2570a0e
commit 7fbd9901f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,4 +42,9 @@ export class ExportComponent extends BaseExportComponent {
organizationService,
);
}
protected saved() {
super.saved();
this.platformUtilsService.showToast("success", null, this.i18nService.t("exportSuccess"));
}
}