display provider code instead of name on LI results grid
authorGalen Charlton <gmc@equinoxinitiative.org>
Fri, 7 Feb 2020 13:38:48 +0000 (08:38 -0500)
committerGalen Charlton <gmc@equinoxinitiative.org>
Fri, 7 Feb 2020 13:38:48 +0000 (08:38 -0500)
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/src/eg2/src/app/staff/acq/search/lineitem-results.component.html

index d1ef61d..6997295 100644 (file)
@@ -24,7 +24,7 @@
 <ng-template #providerTmpl let-lineitem="row">
   <a *ngIf="lineitem.provider()" href="/eg/staff/admin/acq/conify/provider/{{lineitem.provider().id()}}"
      target="_blank">
-    {{lineitem.provider().name()}}
+    {{lineitem.provider().code()}}
   </a>
 </ng-template>