put out some fires after rebasing and smoketesting
authorJason Etheridge <jason@EquinoxOLI.org>
Wed, 14 Dec 2022 21:45:10 +0000 (16:45 -0500)
committerJason Etheridge <jason@EquinoxOLI.org>
Wed, 14 Dec 2022 21:45:10 +0000 (16:45 -0500)
Signed-off-by: Jason Etheridge <jason@EquinoxOLI.org>
Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.component.ts
Open-ILS/src/eg2/src/app/staff/admin/local/circ_matrix_matchpoint/circ-matrix-matchpoint.module.ts
Open-ILS/src/eg2/src/app/staff/admin/local/routing.module.ts

index 535aa0a..f2a8501 100644 (file)
@@ -199,7 +199,7 @@ export class CircMatrixMatchpointComponent implements OnInit {
     }
 
     deleteLimitSets(limitSet) {
-        return new Promise((resolve, reject) => {
+        return new Promise<void>((resolve, reject) => {
             if (limitSet.isDeleted) {
                 if (limitSet.linkedLimitSet.id()) {
                     this.pcrud.remove(limitSet.linkedLimitSet).subscribe(res => {
index e4297af..bf0e821 100644 (file)
@@ -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