From 979c9d3c1f5c1ffa8362f3681dce9e133f79ebc0 Mon Sep 17 00:00:00 2001 From: stroblme Date: Sun, 16 Aug 2026 19:32:10 +0200 Subject: [PATCH] Note that a node's error status clears before anyone sees it --- NOTEPAD.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/NOTEPAD.md b/NOTEPAD.md index f6795e9..2129e41 100644 --- a/NOTEPAD.md +++ b/NOTEPAD.md @@ -44,6 +44,8 @@ is what M4 still waits on, together with porting the flows. ### Flow editor follow-ups +- CHORE/UI: a node's error status clears as soon as it runs again, so a failure that genuinely fired an alert can leave no trace on the canvas by the time anyone looks. The logs panel keeps the traceback; the node itself reads as healthy. + - PERF/FLOW: every save rebuilds the whole pipeline. Fine at the current flow count; rebuild only the touched flow when it starts to show. - CHORE/API: `POST /flows/{name}/rename` is no longer reachable from the UI. A flow's title is what the panel edits, matching how nodes work; the canonical name is fixed at creation, so either the endpoint goes or renaming comes back deliberately. - BUG/UI: `renderedNodes` overwrites xyflow's own `selected` flag with `id === selectedId`, so a box-selection of several nodes is invisible even though delete and copy act on all of them.