NIFI-13060: Using ellipsis and normal line height in the property table (#8792)

* NIFI-13060:
- Using ellipsis and normal line height in the property table.

* NIFI-13060:
- Setting title attribute.

This closes #8792
This commit is contained in:
Matt Gilman 2024-05-09 18:20:48 -04:00 committed by GitHub
parent e005d5f8c1
commit 8b2e770ebd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -35,7 +35,7 @@
<th mat-header-cell *matHeaderCellDef>Property</th> <th mat-header-cell *matHeaderCellDef>Property</th>
<td mat-cell *matCellDef="let item" [class.font-bold]="item.descriptor.required"> <td mat-cell *matCellDef="let item" [class.font-bold]="item.descriptor.required">
<div class="flex justify-between items-center"> <div class="flex justify-between items-center">
<div> <div class="whitespace-nowrap overflow-hidden text-ellipsis leading-normal" [title]="item.descriptor.displayName">
{{ item.descriptor.displayName }} {{ item.descriptor.displayName }}
</div> </div>
<i <i
@ -81,7 +81,7 @@
</ng-template> </ng-template>
<ng-template #nonBlank let-resolvedValue> <ng-template #nonBlank let-resolvedValue>
<div class="flex justify-between items-center"> <div class="flex justify-between items-center">
<div class="whitespace-nowrap overflow-hidden text-ellipsis"> <div class="whitespace-nowrap overflow-hidden text-ellipsis leading-normal" [title]="resolvedValue">
{{ resolvedValue }} {{ resolvedValue }}
</div> </div>
@if (hasExtraWhitespace(resolvedValue)) { @if (hasExtraWhitespace(resolvedValue)) {