diff --git a/dashboard/client/src/pages/node/GPUColumn.tsx b/dashboard/client/src/pages/node/GPUColumn.tsx index 9e76ea3a8d61..e932c95271fd 100644 --- a/dashboard/client/src/pages/node/GPUColumn.tsx +++ b/dashboard/client/src/pages/node/GPUColumn.tsx @@ -23,21 +23,21 @@ export type NodeGPUEntryProps = { export const NodeGPUEntry: React.FC = ({ gpu, slot }) => { const classes = useStyles(); return ( - - + + [{slot}]: - - {gpu.utilizationGpu !== undefined ? ( - - ) : ( - - N/A - - )} - + {gpu.utilizationGpu !== undefined ? ( + + ) : ( + + N/A + + )} + + ); };