mirror of
https://github.com/bitwarden/browser
synced 2025-12-12 22:33:35 +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,
|
result.index,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
this.toastService.showToast({
|
||||||
|
variant: "success",
|
||||||
|
title: "",
|
||||||
|
message: this.i18nService.t("success"),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
async deleteHec() {
|
async deleteHec() {
|
||||||
@@ -217,5 +222,11 @@ export class IntegrationCardComponent implements AfterViewInit, OnDestroy {
|
|||||||
orgIntegrationId,
|
orgIntegrationId,
|
||||||
orgIntegrationConfigurationId,
|
orgIntegrationConfigurationId,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
this.toastService.showToast({
|
||||||
|
variant: "success",
|
||||||
|
title: "",
|
||||||
|
message: this.i18nService.t("success"),
|
||||||
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user