This is an automated email from the ASF dual-hosted git repository.

mcgilman pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/nifi.git


The following commit(s) were added to refs/heads/main by this push:
     new e6f216d009 [NIFI-13645] proptery table cells clickable even when value 
is set to whitespace (#9165)
e6f216d009 is described below

commit e6f216d0092071a1937944b89472c929bf1b8b7c
Author: Scott Aslan <[email protected]>
AuthorDate: Mon Aug 12 14:25:07 2024 -0400

    [NIFI-13645] proptery table cells clickable even when value is set to 
whitespace (#9165)
    
    This closes #9165
---
 .../src/app/ui/common/property-table/property-table.component.html  | 6 +++---
 .../provenance-event-dialog/provenance-event-dialog.component.html  | 4 +++-
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/property-table/property-table.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/property-table/property-table.component.html
index 390081da95..9b1af4df3f 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/property-table/property-table.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/property-table/property-table.component.html
@@ -35,7 +35,7 @@
                     <td mat-cell *matCellDef="let item" 
[class.font-bold]="item.descriptor.required">
                         <div class="flex justify-between items-center">
                             <div
-                                class="whitespace-nowrap overflow-hidden 
text-ellipsis leading-normal"
+                                class="whitespace-nowrap overflow-hidden 
text-ellipsis"
                                 [title]="item.descriptor.displayName">
                                 {{ item.descriptor.displayName }}
                             </div>
@@ -55,7 +55,7 @@
                     <td mat-cell *matCellDef="let item">
                         <div
                             [id]="formatId(item)"
-                            class="pointer"
+                            class="pointer min-h-[21px]"
                             cdkOverlayOrigin
                             #trigger="cdkOverlayOrigin"
                             (click)="openEditor(trigger, item, $event)">
@@ -83,7 +83,7 @@
                                 <ng-template #nonBlank let-resolvedValue>
                                     <div class="flex justify-between 
items-center">
                                         <div
-                                            class="whitespace-nowrap 
overflow-hidden text-ellipsis leading-normal"
+                                            class="whitespace-nowrap 
overflow-hidden text-ellipsis"
                                             [title]="resolvedValue">
                                             {{ resolvedValue }}
                                         </div>
diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html
index c838d73515..815e2a5990 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/ui/common/provenance-event-dialog/provenance-event-dialog.component.html
@@ -232,7 +232,9 @@
                             <div class="flex justify-between">
                                 <div class="mat-body-strong 
primary-color">Attribute Values</div>
                                 <div class="flex items-center gap-x-1">
-                                    <mat-checkbox color="primary" 
[(ngModel)]="onlyShowModifiedAttributes"></mat-checkbox>
+                                    <mat-checkbox
+                                        color="primary"
+                                        
[(ngModel)]="onlyShowModifiedAttributes"></mat-checkbox>
                                     <div>Show modified attributes only</div>
                                 </div>
                             </div>

Reply via email to