Hide All projects covered message while AI job is running
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
Some checks failed
Build and Push Docker Image / build (push) Has been cancelled
The empty state message was incorrectly showing during AI processing. Now it only shows when job is complete and there are no suggestions. Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -627,7 +627,10 @@ function AssignmentManagementContent({ roundId }: { roundId: string }) {
|
|||||||
</div>
|
</div>
|
||||||
)}
|
)}
|
||||||
|
|
||||||
{loadingSuggestions && !isAIJobRunning ? (
|
{isAIJobRunning ? (
|
||||||
|
// Don't show suggestions section while AI job is running - progress is shown above
|
||||||
|
null
|
||||||
|
) : loadingSuggestions ? (
|
||||||
<div className="flex items-center justify-center py-8">
|
<div className="flex items-center justify-center py-8">
|
||||||
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
<Loader2 className="h-8 w-8 animate-spin text-muted-foreground" />
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user