Skip to content

Commit

Permalink
Fix archives screen sublines columns width (#7152)
Browse files Browse the repository at this point in the history
Signed-off-by: Giovanni Ferrari <[email protected]>
  • Loading branch information
quinarygio authored and vlo-rte committed Nov 7, 2024
1 parent 7258c63 commit f0314ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/main/src/app/modules/archives/archives.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
<td></td>
<td style="padding-left: 30px"> {{ displayTime(historyCard.publishDate) }} </td>
<td style="padding-left: 30px">{{ getEntityName(historyCard.publisher) }}</td>
<td style="padding-left: 30px"
<td style="padding-left: 30px; min-width: 200px"
[ngbPopover]="entityRecipientsTooltip" #p="ngbPopover" popoverClass="opfab-popover-unclickable" placement="top" container="body" [popoverContext]="{recipientsId: historyCard.entityRecipients}"
triggers="manual" (mouseenter)="historyCard.entityRecipients?.length > 2 && p.open()" (mouseleave)="p.close()">
<ng-container *ngFor="let recipient of getEntityRecipientsNames(historyCard.entityRecipients, 2)">{{ recipient }}<br/></ng-container>
Expand Down

0 comments on commit f0314ab

Please sign in to comment.