1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-06 00:13:28 +00: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

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"));
}
}