diff --git a/src/components/DeviceNode.tsx b/src/components/DeviceNode.tsx index 9db4dae..e268617 100644 --- a/src/components/DeviceNode.tsx +++ b/src/components/DeviceNode.tsx @@ -99,7 +99,7 @@ const DeviceNode: React.FC = ({ const renderPorts = (ports: Port[], isOutput: boolean) => (
-

+

{isOutput ? "Outputs" : "Inputs"}

{ports.map((port) => ( @@ -107,7 +107,7 @@ const DeviceNode: React.FC = ({ key={port.id} className={`text-xs cursor-pointer ${ isConnecting ? "hover:bg-blue-200 dark:hover:bg-blue-700" : "" - }`} + } text-gray-600 dark:text-gray-400`} onClick={(e) => { e.stopPropagation(); onPortClick(device.id, port.id, isOutput);