For some reason the span tag wrapping the contents of the Holdable? column
began to cause problems with Chrome 99 on Windows. Changing the spans to divs
works everywhere without turning off tooltips.
Signed-off-by: Jason Boyer <JBoyer@equinoxOLI.org>
Signed-off-by: Mike Rylander <mrylander@gmail.com>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
</ng-template>
<ng-template #holdableTemplate let-copy="row" let-context="userContext">
- <span *ngIf="context.holdable(copy)">
+ <div *ngIf="context.holdable(copy)">
<div class="border-bottom">
<a routerLink="/staff/catalog/hold/C"
[queryParams]="{target: copy.id}"
Call Number Hold
</a>
</div>
- </span>
- <span *ngIf="!context.holdable(copy)" i18n>No</span>
+ </div>
+ <div *ngIf="!context.holdable(copy)" i18n>No</div>
</ng-template>
<ng-template #courseTemplate let-copy="row">