]> git.evergreen-ils.org Git - working/Evergreen.git/commit
Angular component properties must be public to be used in a template
authorJane Sandberg <sandbej@linnbenton.edu>
Sat, 12 Sep 2020 15:08:46 +0000 (08:08 -0700)
committerJane Sandberg <sandbej@linnbenton.edu>
Sat, 12 Sep 2020 15:08:52 +0000 (08:08 -0700)
commitfe55067d2189edde4c874575eaef1ad7e87b3557
tree118e2d3927bf973177bec20e31b5b0fb99743a61
parente1c752de85e7d9057285934df24dd2fbc78497aa
Angular component properties must be public to be used in a template

The JIT compiler (used in ng build) doesn't mind when private properties
are used in templates.  The AOT compiler (used in ng build --prod) does,
though.  Marking these two properties as public allows ng build --prod
to complete.

Also removes some unnecessary imports.

Signed-off-by: Jane Sandberg <sandbej@linnbenton.edu>
Open-ILS/src/eg2/src/app/staff/acq/provider/acq-provider.component.ts
Open-ILS/src/eg2/src/app/staff/acq/provider/provider-record.service.ts