style: change upload complete status bar color to green
All checks were successful
Automated Container Build / build-and-push (push) Successful in 40s
All checks were successful
Automated Container Build / build-and-push (push) Successful in 40s
This commit is contained in:
parent
2596382ea8
commit
c9f84fc257
1 changed files with 1 additions and 1 deletions
|
|
@ -2076,7 +2076,7 @@ export default function FileExplorer({ onLogout }: FileExplorerProps) {
|
||||||
initial={{ width: 0 }}
|
initial={{ width: 0 }}
|
||||||
animate={{ width: `${percentage}%` }}
|
animate={{ width: `${percentage}%` }}
|
||||||
style={{
|
style={{
|
||||||
backgroundColor: batch.status === 'error' ? 'var(--color-danger)' : 'var(--color-accent)',
|
backgroundColor: batch.status === 'error' ? 'var(--color-danger)' : batch.status === 'complete' ? 'var(--color-success)' : 'var(--color-accent)',
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
Reference in a new issue