1
0
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:
Vijay Oommen
2025-09-22 09:18:10 -05:00
committed by GitHub
parent 57734a7a5c
commit 9ff7c0f714

View File

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