feat: allow stopping queued runs
This commit is contained in:
@@ -441,7 +441,7 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
|
|||||||
ref={logEndRef} />
|
ref={logEndRef} />
|
||||||
</div>
|
</div>
|
||||||
</Box>
|
</Box>
|
||||||
{row.status === 'running' ? <Button
|
{row.status === 'running' || row.status === 'queued' ? <Button
|
||||||
color="error"
|
color="error"
|
||||||
onClick={abortRunHandler}
|
onClick={abortRunHandler}
|
||||||
>
|
>
|
||||||
@@ -595,4 +595,4 @@ export const RunContent = ({ row, currentLog, interpretationInProgress, logEndRe
|
|||||||
</TabContext>
|
</TabContext>
|
||||||
</Box>
|
</Box>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user