LP 1975861: Fix the Patch for Lp 1909681 on rel_3_7
authorJason Stephenson <jason@sigio.com>
Thu, 26 May 2022 17:02:53 +0000 (13:02 -0400)
committerJason Stephenson <jason@sigio.com>
Thu, 7 Jul 2022 19:26:11 +0000 (15:26 -0400)
The change to the Hopeless Holds Interface for opening title links in
a new tab was missed in the 3.7 backport of the branch from bug
1909681. This commit adds it back.

NOTE: This branch is for rel_3_7 and ONLY rel_3_7.  Other Evergreen
branches do not need it.

Signed-off-by: Jason Stephenson <jason@sigio.com>
Open-ILS/src/eg2/src/app/staff/share/holds/grid.component.html

index 83e6f85..4151f29 100644 (file)
       <eg-grid-column i18n-label label="Pickup Library" path='pl_shortname'></eg-grid-column>
 
       <ng-template #titleTmpl let-hold="row">
-        <a class="no-href" routerLink="/staff/catalog/record/{{hold.record_id}}">
+        <a class="no-href" routerLink="/staff/catalog/record/{{hold.record_id}}" target="_blank">
           {{hold.title}}
         </a>
       </ng-template>