Update TaskWorkspace component to conditionally render queue status based on final submission state, improving user feedback during task processing.
Some checks failed
platform/bro-js/challenge-pl/pipeline/head There was a failure building this commit
Some checks failed
platform/bro-js/challenge-pl/pipeline/head There was a failure building this commit
This commit is contained in:
parent
4c88e7d19a
commit
bb31cc5c6c
@ -47,7 +47,7 @@ export const TaskWorkspace = ({ task, onTaskComplete }: TaskWorkspaceProps) => {
|
|||||||
</Box>
|
</Box>
|
||||||
|
|
||||||
{/* Статус проверки */}
|
{/* Статус проверки */}
|
||||||
{queueStatus && (
|
{queueStatus && !finalSubmission && (
|
||||||
<Box borderWidth="1px" borderRadius="lg" borderColor="blue.200" bg="blue.50" p={4}>
|
<Box borderWidth="1px" borderRadius="lg" borderColor="blue.200" bg="blue.50" p={4}>
|
||||||
<HStack>
|
<HStack>
|
||||||
<Spinner size="md" color="blue.500" />
|
<Spinner size="md" color="blue.500" />
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user