allow processors to be moved across routes

This commit is contained in:
Joel Wetzell
2026-05-17 20:54:29 -05:00
parent 623838de3e
commit 3f0c0cf45c
6 changed files with 173 additions and 100 deletions
+3 -1
View File
@@ -66,6 +66,8 @@
<div
class="border-2 border-gray-500 m-2"
cdkDropList
[id]="listsService.registerProcessorList(path() + '/processors')"
[cdkDropListConnectedTo]="listsService.processorListIds"
(cdkDropListDropped)="drop($event)"
[cdkDropListData]="route()?.processors"
>
@@ -73,7 +75,7 @@
<div cdkDrag>
<app-processor
[path]="path() + '/processors/' + i"
(processorChange)="processorUpdated(i, $event)"
(updated)="processorUpdated(i, $event)"
[processor]="processor"
(delete)="deleteProcessor(i)"
[inDragList]="true"