From e7cd130a3e4c559ebc6816f8dea02db1e67402ee Mon Sep 17 00:00:00 2001 From: Galen Charlton Date: Thu, 3 Jun 2021 15:59:15 -0400 Subject: [PATCH] funds: add toast upon succesful rollover LH#31 Signed-off-by: Galen Charlton --- .../src/app/staff/admin/acq/funds/fund-rollover-dialog.component.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-rollover-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-rollover-dialog.component.ts index 45fa7c900c..c7f995d8a2 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-rollover-dialog.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/acq/funds/fund-rollover-dialog.component.ts @@ -133,6 +133,10 @@ export class FundRolloverDialogComponent () => { this.isProcessing = false; this.showResults = true; + if (!this.dryRun) { + this.successString.current() + .then(str => this.toast.success(str)); + } // note that we're intentionally not closing the dialog // so that user can view the results } -- 2.11.0