From 9ff7c0f714046dbac58eb9560b84d8121d7df1f1 Mon Sep 17 00:00:00 2001 From: Vijay Oommen Date: Mon, 22 Sep 2025 09:18:10 -0500 Subject: [PATCH] PM-25983 Toast on successful save/delete (#16528) --- .../integration-card/integration-card.component.ts | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/bitwarden_license/bit-web/src/app/dirt/organization-integrations/integration-card/integration-card.component.ts b/bitwarden_license/bit-web/src/app/dirt/organization-integrations/integration-card/integration-card.component.ts index b83b1609bce..99e8d950d81 100644 --- a/bitwarden_license/bit-web/src/app/dirt/organization-integrations/integration-card/integration-card.component.ts +++ b/bitwarden_license/bit-web/src/app/dirt/organization-integrations/integration-card/integration-card.component.ts @@ -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"), + }); } }