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 2f73ced5a6 [NIFI-13582] - Fix tracking expression warning from the 
breadcrumbs template (#9113)
2f73ced5a6 is described below

commit 2f73ced5a6dad469fb1942cfe9a6ac61031436a4
Author: Rob Fellows <[email protected]>
AuthorDate: Thu Jul 25 16:23:38 2024 -0400

    [NIFI-13582] - Fix tracking expression warning from the breadcrumbs 
template (#9113)
    
    This closes #9113
---
 .../flow-designer/ui/common/breadcrumbs/breadcrumbs.component.html      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/common/breadcrumbs/breadcrumbs.component.html
 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/common/breadcrumbs/breadcrumbs.component.html
index 2be4cbfb00..0070c5da68 100644
--- 
a/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/common/breadcrumbs/breadcrumbs.component.html
+++ 
b/nifi-frontend/src/main/frontend/apps/nifi/src/app/pages/flow-designer/ui/common/breadcrumbs/breadcrumbs.component.html
@@ -16,7 +16,7 @@
   -->
 
 <div class="px-4 flex justify-start items-center overflow-x-auto breadcrumbs">
-    @for (breadcrumb of prepareBreadcrumbs(); track breadcrumb) {
+    @for (breadcrumb of prepareBreadcrumbs(); track breadcrumb.id) {
         <div class="h-8 flex items-center">
             @if (breadcrumb.parentBreadcrumb) {
                 <div class="mx-3.5">&raquo;</div>

Reply via email to