From f6b781e452807b07496f5db65351c2de89e7f3bd Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 22 Oct 2025 13:43:14 +0530 Subject: [PATCH] fix: bring back tab panel --- src/components/run/RunContent.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/components/run/RunContent.tsx b/src/components/run/RunContent.tsx index c5e4ab06..65a49a2e 100644 --- a/src/components/run/RunContent.tsx +++ b/src/components/run/RunContent.tsx @@ -614,6 +614,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe return ( + {row.status === 'running' || row.status === 'queued' ? ( @@ -907,6 +908,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe )} + );