diff --git a/.changeset/fn-7266-simple-workflow-inspector.md b/.changeset/fn-7266-simple-workflow-inspector.md new file mode 100644 index 0000000000..8ba00a3701 --- /dev/null +++ b/.changeset/fn-7266-simple-workflow-inspector.md @@ -0,0 +1,7 @@ +--- +"@runfusion/fusion": patch +--- + +summary: Open Workflow simple-editor step details when rows are clicked. +category: fix +dev: Restores the simple graph row/pencil selection path for compact and mobile workflow editing. diff --git a/packages/dashboard/app/components/WorkflowNodeEditor.tsx b/packages/dashboard/app/components/WorkflowNodeEditor.tsx index 354d1e0b76..4bac5854a2 100644 --- a/packages/dashboard/app/components/WorkflowNodeEditor.tsx +++ b/packages/dashboard/app/components/WorkflowNodeEditor.tsx @@ -3566,9 +3566,9 @@ function InnerEditor({ )} + {/* FNXC:WorkflowSimpleEditor 2026-06-29-23:21: Simple editor row and pencil affordances must open the same node details in desktop compact and mobile presentations. Do not suppress this inspector only because the canvas is hidden; mobile collapse still closes the detail stage and end nodes remain non-inspectable. */} {selectedNodeHasInspector && - !(isMobileMode && inspectorCollapsed) && - !(compactLayoutEnabled && !isMobileMode) && ( + !(isMobileMode && inspectorCollapsed) && (