We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25c6d29 commit 413c82cCopy full SHA for 413c82c
frontend/app/view/processviewer/processviewer.tsx
@@ -484,7 +484,7 @@ const ProcessRow = React.memo(function ProcessRow({
484
<div className="px-2 flex items-center truncate text-secondary">{proc.user}</div>
485
{showThreads && (
486
<div className="px-2 flex items-center truncate justify-end text-secondary font-mono text-[11px]">
487
- {proc.numthreads > 1 ? proc.numthreads : ""}
+ {proc.numthreads >= 1 ? proc.numthreads : ""}
488
</div>
489
)}
490
<div className="px-2 flex items-center truncate justify-end font-mono text-[11px]">
0 commit comments