From: Michele Morgan Date: Tue, 30 Mar 2021 20:16:59 +0000 (+0000) Subject: LP#1917809 Create Course: Owning Library Default X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=af7aafe71bc230e0f261b11117f8c52f19087fcd;p=working%2FEvergreen.git LP#1917809 Create Course: Owning Library Default Changes the default for the owning library in the Create Course modal to the logged in user's workstation org unit instead of the consortium. Signed-off-by: Michele Morgan --- diff --git a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts index a2e73289a6..b8088c1945 100644 --- a/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts +++ b/Open-ILS/src/eg2/src/app/staff/admin/local/course-reserves/course-list.component.ts @@ -117,8 +117,10 @@ export class CourseListComponent implements OnInit, AfterViewInit { createNew() { this.editDialog.mode = 'create'; + const course_module_course = this.idl.create('acmc'); + course_module_course.owning_lib(this.auth.user().ws_ou()); this.editDialog.recordId = null; - this.editDialog.record = null; + this.editDialog.record = course_module_course; this.editDialog.open({size: this.dialog_size}).subscribe( ok => { this.createString.current()