Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion frontend/src/components/analysis/TimelineView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ interface TimelineViewProps {
}

function formatDate(iso: string): string {
if (!iso) return "";
if (!iso) return "-";
try {
const d = new Date(iso);
if (isNaN(d.getTime())) return iso;
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/entity/EntityDetail.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export function EntityDetail({ entityId, onClose }: EntityDetailProps) {
).map(([key, value]) => (
<div key={key} className={styles.property}>
<span className={styles.propKey}>{key}</span>
<span className={styles.propValue}>{String(value ?? "")}</span>
<span className={styles.propValue}>{String(value ?? "-")}</span>
</div>
))}
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/journey/JourneyPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ export function JourneyPanel() {
</a>
<span style={{ fontSize: 9, color: "#475569" }}>
{new Date(e.timestamp).toLocaleTimeString("pt-BR", { hour: "2-digit", minute: "2-digit" })}
{e.description && (" " + e.description.slice(0, 40))}
{e.description && (" - " + e.description.slice(0, 40))}
</span>
</div>
<button
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/landing/ReportsShowcase.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ interface Report {
const REPORTS: Report[] = [
{
id: "patense",
title: "Grupo Patense Rede Societaria e Financeira",
title: "Grupo Patense - Rede Societária e Financeira",
date: "2026-03-01",
description: "Pesquisa de 13 empresas interligadas com R$217M em financiamentos BNDES e R$2.15B em divida ativa.",
tags: ["BNDES", "rede societaria", "divida ativa"],
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/landing/StatsBar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export function StatsBar() {
<div className={styles.bar}>
<div className={styles.inner}>
<div className={styles.item}>
<span className={styles.number}>{"\u2014"}</span>
<span className={styles.number}>{"-"}</span>
<span className={styles.label}>{t("common.loading")}</span>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/pages/Activity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
fetchFeed();
const interval = setInterval(fetchFeed, 15000);
return () => clearInterval(interval);
}, [filter]);

Check warning on line 68 in frontend/src/pages/Activity.tsx

View workflow job for this annotation

GitHub Actions / Frontend (TypeScript)

React Hook useEffect has a missing dependency: 'fetchFeed'. Either include it or remove the dependency array

useEffect(() => { setPage(0); }, [filter]);

Expand All @@ -80,7 +80,7 @@
<div className={styles.container}>
<h1 className={styles.title}>Feed de Atividades</h1>
<p className={styles.subtitle}>
Todas as ações do sistema em tempo real Mycelium Event Trail
Todas as ações do sistema em tempo real - Mycelium Event Trail
</p>

<div className={styles.statsBar}>
Expand Down
Loading