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)
committerKyle Huckins <khuckins@catalyte.io>
Thu, 21 Jan 2021 20:38:31 +0000 (20:38 +0000)
commit38ba87324cff483d3f035bc9ab29d0d527bb3268
tree9619093d1d6c691e42b62697b4758cc755510ab9
parentfe8f7543e642358790d506c49ac95dea53626c3e
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