mirror of https://github.com/apache/nifi.git
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:
parent
e005d5f8c1
commit
8b2e770ebd
|
@ -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)) {
|
||||||
|
|
Loading…
Reference in New Issue