diff --git a/src/pages/LeadsPage.jsx b/src/pages/LeadsPage.jsx index ae54793..66b13e2 100644 --- a/src/pages/LeadsPage.jsx +++ b/src/pages/LeadsPage.jsx @@ -230,6 +230,7 @@ function PipelineBar({ lead }) { else if (status === 'running') label = `${PIPELINE_STEPS[step] || 'Verarbeitung'} läuft…` else if (status === 'pending') label = 'Wartet auf den nächsten Lauf' else if (status === 'failed') label = `Fehler: ${PIPELINE_STEPS[step] || '?'}` + else if (status === 'waiting_enrichment') label = 'Wartet auf Anreicherung (Bilder & Logo)' else label = step > 0 ? `Stand: ${PIPELINE_STEPS[step - 1]} (manuell)` : 'Keine Automatik' return ( @@ -245,6 +246,7 @@ function PipelineBar({ lead }) { animation = 'leadPulse 1.2s ease-in-out infinite' } if (status === 'failed' && n === step + 1) background = '#f87171' + if (status === 'waiting_enrichment' && n === step + 1) background = '#fbbf24' if (status === 'idle' && n <= step) background = '#9ca3af' return (