diff --git a/decnet_web/src/components/MazeNET/Inspector.tsx b/decnet_web/src/components/MazeNET/Inspector.tsx index a93e6d0e..c64ecd7d 100644 --- a/decnet_web/src/components/MazeNET/Inspector.tsx +++ b/decnet_web/src/components/MazeNET/Inspector.tsx @@ -27,12 +27,14 @@ interface Props { onAddDecky?: (netId: string) => void; setSelection?: (sel: Selection) => void; pendingChanges?: number; + className?: string; } const Inspector: React.FC = ({ selection, nets, nodes, edges, topologyStatus, onClose, onDeleteNet, onDeleteNode, onDeleteEdge, onRemoveService, onAddDecky, setSelection, pendingChanges = 0, + className = '', }) => { const net = selection?.type === 'net' ? nets.find((n) => n.id === selection.id) : undefined; const node = selection?.type === 'node' ? nodes.find((n) => n.id === selection.id) : undefined; @@ -58,7 +60,7 @@ const Inspector: React.FC = ({ const isObserved = node?.kind === 'observed'; return ( -