LP1965446 Option to Disable Title-Level Holds on Bib Records with Parts
[evergreen-equinox.git] / Open-ILS / src / eg2 / src / app / staff / catalog / hold / hold.component.html
index a367287..ce18269 100644 (file)
         <div class="col-lg-2">
           <ng-container *ngIf="ctx.holdMeta.parts.length">
             <select class="form-select"  (change)="setPart(ctx, $event)"
-              [ngModel]="ctx.holdMeta.part ? ctx.holdMeta.part.id() : ''">
-              <option value="" i18n>Any Part</option>
+              [ngModel]="ctx.holdMeta.part ? ctx.holdMeta.part.id() : (ctx.holdMeta.part_required ? ctx.holdMeta.parts[0].id() : '')">
+              <option *ngIf="!ctx.holdMeta.part_required" value="" i18n>Any Part</option>
               <option *ngFor="let part of ctx.holdMeta.parts"
                 value="{{part.id()}}">{{part.label()}}</option>
             </select>