Skip to content

Commit 413c82c

Browse files
committed
fix NT for 1 thread
1 parent 25c6d29 commit 413c82c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/app/view/processviewer/processviewer.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -484,7 +484,7 @@ const ProcessRow = React.memo(function ProcessRow({
484484
<div className="px-2 flex items-center truncate text-secondary">{proc.user}</div>
485485
{showThreads && (
486486
<div className="px-2 flex items-center truncate justify-end text-secondary font-mono text-[11px]">
487-
{proc.numthreads > 1 ? proc.numthreads : ""}
487+
{proc.numthreads >= 1 ? proc.numthreads : ""}
488488
</div>
489489
)}
490490
<div className="px-2 flex items-center truncate justify-end font-mono text-[11px]">

0 commit comments

Comments
 (0)