From 8f9d2352c8369bc0d19bda5b1fb2817219f62765 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Tue, 11 Aug 2026 19:46:05 -0500 Subject: [PATCH] fix loop tracking for route and processors --- src/app/components/route-list/route-list.html | 2 +- src/app/components/route/route.html | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/app/components/route-list/route-list.html b/src/app/components/route-list/route-list.html index 6491d65..192215e 100644 --- a/src/app/components/route-list/route-list.html +++ b/src/app/components/route-list/route-list.html @@ -17,7 +17,7 @@ (cdkDropListDropped)="drop($event)" [cdkDropListData]="routes()" > - @for (route of routes(); track route; let i = $index) { + @for (route of routes(); track $index + (route.input || ''); let i = $index) {
- @for (processor of processors(); track processor; let i = $index) { + @for (processor of processors(); track $index + processor.type; let i = $index) {
- @for (processor of processors(); track processor; let i = $index) { + @for (processor of processors(); track $index + processor.type; let i = $index) {