mirror of
https://github.com/bitwarden/browser
synced 2025-12-11 05:43:41 +00:00
PM-25983 Toast on successful save/delete (#16528)
This commit is contained in:
@@ -201,6 +201,11 @@ export class IntegrationCardComponent implements AfterViewInit, OnDestroy {
|
||||
result.index,
|
||||
);
|
||||
}
|
||||
this.toastService.showToast({
|
||||
variant: "success",
|
||||
title: "",
|
||||
message: this.i18nService.t("success"),
|
||||
});
|
||||
}
|
||||
|
||||
async deleteHec() {
|
||||
@@ -217,5 +222,11 @@ export class IntegrationCardComponent implements AfterViewInit, OnDestroy {
|
||||
orgIntegrationId,
|
||||
orgIntegrationConfigurationId,
|
||||
);
|
||||
|
||||
this.toastService.showToast({
|
||||
variant: "success",
|
||||
title: "",
|
||||
message: this.i18nService.t("success"),
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user