bug fix sending component

This commit is contained in:
2026-03-10 09:11:24 +01:00
parent 618076193a
commit 9332e29e53
9 changed files with 109 additions and 6 deletions

View File

@@ -84,5 +84,9 @@ async def execute_on_client(
result = await callback(payload)
collector = _tool_result_collector.get(None)
if collector is not None:
collector.append(result)
collector.append({
"action": action,
"table": table,
"data": result,
})
return result