LP#1905068: (follow-up) never initialize an OU ID to 1
authorGalen Charlton <gmc@equinoxOLI.org>
Sun, 15 Aug 2021 15:27:41 +0000 (11:27 -0400)
committerGalen Charlton <gmc@equinoxOLI.org>
Sun, 15 Aug 2021 15:31:41 +0000 (11:31 -0400)
This change has no effect on behavior, as defaultOuId's
initialization value always gets replaced with the user's
WS OU or the org root when the contructor is run, but
avoids any implication during code-reading that the top
of the OU tree can be assumed to have ID 1.

Signed-off-by: Galen Charlton <gmc@equinoxOLI.org>
Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts

index 5884c8a..3c6a3e6 100644 (file)
@@ -48,7 +48,7 @@ export class CourseListComponent implements OnInit, AfterViewInit {
     grid_source: GridDataSource = new GridDataSource();
     currentMaterials: any[] = [];
     search_value = '';
-    defaultOuId = 1;
+    defaultOuId: number;
     searchOrgs: OrgFamily;
     defaultTerm: IdlObject;