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

pvillard 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 7e4463ae4e NIFI-15260 - Hovering over long flow file names in Queue UI 
view
7e4463ae4e is described below

commit 7e4463ae4e1a355c64f59effdef727405285b208
Author: Pierre Villard <[email protected]>
AuthorDate: Tue Dec 23 13:20:50 2025 +0100

    NIFI-15260 - Hovering over long flow file names in Queue UI view
    
    Signed-off-by: Pierre Villard <[email protected]>
    
    This closes #10685.
---
 .../queue/ui/queue-listing/flowfile-table/flowfile-table.component.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/queue/ui/queue-listing/flowfile-table/flowfile-table.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/queue/ui/queue-listing/flowfile-table/flowfile-table.component.html
index 09c0443aad..a39d1c380b 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/queue/ui/queue-listing/flowfile-table/flowfile-table.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/queue/ui/queue-listing/flowfile-table/flowfile-table.component.html
@@ -60,7 +60,7 @@
                 <!-- File Name Column -->
                 <ng-container matColumnDef="fileName">
                     <th mat-header-cell *matHeaderCellDef>Filename</th>
-                    <td mat-cell *matCellDef="let item">
+                    <td mat-cell *matCellDef="let item" 
[title]="item.filename">
                         {{ item.filename }}
                     </td>
                 </ng-container>

Reply via email to