From: Galen Charlton Date: Thu, 3 Jun 2021 19:59:15 +0000 (-0400) Subject: funds: add toast upon succesful rollover X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=e7cd130a3e4c559ebc6816f8dea02db1e67402ee;p=working%2FEvergreen.git funds: add toast upon succesful rollover LH#31 Signed-off-by: Galen Charlton --- 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 }