From: Jason Etheridge Date: Wed, 14 Dec 2022 21:45:10 +0000 (-0500) Subject: put out some fires after rebasing and smoketesting X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=173f5f7d0842522f930e4500748d68313d0de263;p=working%2FEvergreen.git put out some fires after rebasing and smoketesting Signed-off-by: Jason Etheridge --- diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.component.ts index 535aa0aaee..f2a8501367 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.component.ts @@ -199,7 +199,7 @@ export class CircMatrixMatchpointComponent implements OnInit { } deleteLimitSets(limitSet) { - return new Promise((resolve, reject) => { + return new Promise((resolve, reject) => { if (limitSet.isDeleted) { if (limitSet.linkedLimitSet.id()) { this.pcrud.remove(limitSet.linkedLimitSet).subscribe(res => { diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.module.ts index 516fb90962..6ac7b60869 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.module.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.module.ts @@ -23,7 +23,7 @@ import {CircMatrixMatchpointDialogComponent} from './circ-matrix-matchpoint-dial ] }) -export class CircMatrixMathpointModule { +export class CircMatrixMatchpointModule { } diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts index e4297afbba..bf0e82171c 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts @@ -99,7 +99,8 @@ const routes: Routes = [{ import('./negative-balances/negative-balances.module').then(m => m.NegativeBalancesModule) }, { path: 'config/circ_matrix_matchpoint', - loadChildren: '@eg/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.module#CircMatrixMathpointModule' + loadChildren: () => + import('./circ_matrix_matchpoint/circ-matrix-matchpoint.module').then(m => m.CircMatrixMatchpointModule) }, { path: ':schema/:table', component: BasicAdminPageComponent