[open-ils-commits] [GIT] Evergreen ILS branch rel_3_4 updated. 01514c370320a6ad3213816d63577aed24e49f3e

Evergreen Git git at git.evergreen-ils.org
Fri Feb 28 11:12:08 EST 2020


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "Evergreen ILS".

The branch, rel_3_4 has been updated
       via  01514c370320a6ad3213816d63577aed24e49f3e (commit)
      from  c9068f786f814de2787aa70fbabf8c1322324cd6 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 01514c370320a6ad3213816d63577aed24e49f3e
Author: Bill Erickson <berickxx at gmail.com>
Date:   Fri Feb 28 11:10:00 2020 -0500

    LP1860460 3.4 Angular version mismatch repairs
    
    Angular v7, used in 3.4, does not support the {static:boolean} option
    for @ViewChild.  Remove some instances that were back-ported.
    
    Signed-off-by: Bill Erickson <berickxx at gmail.com>

diff --git a/Open-ILS/src/eg2/src/app/staff/nav.component.ts b/Open-ILS/src/eg2/src/app/staff/nav.component.ts
index 5627f762ba..4f0283a51c 100644
--- a/Open-ILS/src/eg2/src/app/staff/nav.component.ts
+++ b/Open-ILS/src/eg2/src/app/staff/nav.component.ts
@@ -26,7 +26,7 @@ export class StaffNavComponent implements OnInit, OnDestroy {
     // When active, show a link to the experimental Angular staff catalog
     showAngularCatalog: boolean;
 
-    @ViewChild('navOpChange', {static: false}) opChange: OpChangeComponent;
+    @ViewChild('navOpChange') opChange: OpChangeComponent;
     permFailedSub: Subscription;
 
     constructor(
diff --git a/Open-ILS/src/eg2/src/app/staff/share/holdings/delete-volcopy-dialog.component.ts b/Open-ILS/src/eg2/src/app/staff/share/holdings/delete-volcopy-dialog.component.ts
index 17e033ddde..71cf3f3da7 100644
--- a/Open-ILS/src/eg2/src/app/staff/share/holdings/delete-volcopy-dialog.component.ts
+++ b/Open-ILS/src/eg2/src/app/staff/share/holdings/delete-volcopy-dialog.component.ts
@@ -47,7 +47,7 @@ export class DeleteHoldingDialogComponent
     @ViewChild('errorMsg')
         private errorMsg: StringComponent;
 
-    @ViewChild('confirmOverride', {static: false})
+    @ViewChild('confirmOverride')
         private confirmOverride: ConfirmDialogComponent;
 
     constructor(

-----------------------------------------------------------------------

Summary of changes:
 Open-ILS/src/eg2/src/app/staff/nav.component.ts                         | 2 +-
 .../eg2/src/app/staff/share/holdings/delete-volcopy-dialog.component.ts | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
Evergreen ILS


More information about the open-ils-commits mailing list