feat: allow stopping queued runs

This commit is contained in:
Karishma Shukla
2025-06-04 18:10:11 +05:30
committed by GitHub
parent c6a1d82a47
commit 6f291c4237

View File

@@ -441,7 +441,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
ref={logEndRef} />
</div>
</Box>
{row.status === 'running' ? <Button
{row.status === 'running' || row.status === 'queued' ? <Button
color="error"
onClick={abortRunHandler}
>
@@ -595,4 +595,4 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
</TabContext>
</Box>
);
};
};