Portal Community

How to Open the Inspector

ActionResult
Single click a rowJumps the canvas to the node (does NOT switch to Inspector)
Double-click a rowSwitches panel to Node Inspector tab, loads the node's data
Right-click a row → "Inspect Node"Same as double-click
Hover row → click the iconSame as double-click

What Happens on Double-Click

// Double-click handler in ExecutionNodeListTabContent
function handleRowDoubleClick(nodeId: string) {
  // 1. Set the selected node in the store
  store.setSelectedNodeId(nodeId);

  // 2. Switch the panel to the Node Inspector tab
  engine.activateTab('node-inspector');

  // 3. Also publish the node:selected event so the canvas highlights it
  bus.publish('node:selected', { nodeId, source: 'node-list-tab-dblclick' });
}

Inspector Data Availability

The Node Inspector tab can only show data for nodes that have executed. Opening the inspector for a pending node (one that has not started yet) shows an empty state with the message "No execution data yet for this node."

Node StatusInspector Shows
pendingEmpty state — "No execution data yet"
runningInput data (available from NodeExecutionStarted) — output not yet available
completedFull input and output data
failedInput data + error details; output is null
skippedInput data only; output is null (node was bypassed)