feat(video-studio): ✨ Add InvisibleProtectionsDemo component to showcase security/privacy protections in video studio UI
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
This commit is contained in:
parent
f4604e01ca
commit
7e22726f4c
1 changed files with 4 additions and 2 deletions
|
|
@ -888,8 +888,10 @@ function JobCard({ job, meta, expanded, onToggleExpand }: JobCardProps): ReactEl
|
|||
</div>
|
||||
)}
|
||||
|
||||
{/* Done: adversary proof — always expanded when first completed, collapsible */}
|
||||
{job.status === 'done' && expanded && <AdversaryPanel job={job} />}
|
||||
{/* Adversary proof — shown for done and failed jobs if any proof data exists */}
|
||||
{(job.status === 'done' || (job.status === 'failed' && job.proofs.length > 0)) && expanded && (
|
||||
<AdversaryPanel job={job} />
|
||||
)}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue