Álvaro Valenzuela Valdes commited on
Commit ·
48f7497
1
Parent(s): 5aff464
feat: show file names in Document Corral
Browse files
frontend/components/AgentAnalysis.tsx
CHANGED
|
@@ -425,6 +425,9 @@ export default function AgentAnalysis({ tender, companyProfile, analysis, onAnal
|
|
| 425 |
{icon.emoji}
|
| 426 |
</span>
|
| 427 |
<span className="text-[8px] font-black uppercase mt-1 opacity-60">{icon.label}</span>
|
|
|
|
|
|
|
|
|
|
| 428 |
{item.analysis && <span className="absolute -top-1 -right-1 h-3 w-3 bg-green-500 rounded-full border-2 border-black" title="Analyzed" />}
|
| 429 |
</button>
|
| 430 |
<button
|
|
|
|
| 425 |
{icon.emoji}
|
| 426 |
</span>
|
| 427 |
<span className="text-[8px] font-black uppercase mt-1 opacity-60">{icon.label}</span>
|
| 428 |
+
<div className="absolute -bottom-6 left-0 right-0 text-center">
|
| 429 |
+
<p className="text-[8px] text-slate-500 truncate px-1 font-mono">{item.file.name}</p>
|
| 430 |
+
</div>
|
| 431 |
{item.analysis && <span className="absolute -top-1 -right-1 h-3 w-3 bg-green-500 rounded-full border-2 border-black" title="Analyzed" />}
|
| 432 |
</button>
|
| 433 |
<button
|