Properties Details correctly reacts on user interaction

This commit is contained in:
2025-08-04 16:40:48 +02:00
parent badc2e28b0
commit e74639c042
5 changed files with 76 additions and 42 deletions

View File

@@ -43,7 +43,7 @@ class WorkflowDesignerCommandManager(BaseCommandManager):
def select_processor(self, component_id: str):
return {
"hx_post": f"{ROUTE_ROOT}{Routes.SelectProcessor}",
"hx-target": f"#p_{self._id}",
"hx-target": f"#ppc_{self._id}",
"hx-swap": "outerHTML",
"hx-trigger": "change",
"hx-vals": f'js:{{"_id": "{self._id}", "component_id": "{component_id}"}}',