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
1 changed files with 5 additions and 0 deletions

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