We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 78ab9e0 commit b882e38Copy full SHA for b882e38
frontend/app/view/sysinfo/sysinfo.tsx
@@ -547,7 +547,7 @@ const SysinfoViewInner = React.memo(({ model }: SysinfoViewProps) => {
547
"grid-cols-2": cols2,
548
})}
549
>
550
- {yvals.map((yval, idx) => {
+ {plotData && plotData.length > 0 && yvals.map((yval, idx) => {
551
return (
552
<SingleLinePlot
553
key={`plot-${model.blockId}-${yval}`}
0 commit comments