1
This commit is contained in:
@@ -40,9 +40,9 @@ export default function WorkflowPipeline({
|
||||
const getStatusIcon = (status: WorkflowStep["status"], stepNumber: number) => {
|
||||
switch (status) {
|
||||
case "completed":
|
||||
return <CheckCircleIcon className="size-5" />;
|
||||
return <CheckCircleIcon className="size-5 text-white" />;
|
||||
case "in_progress":
|
||||
return <TimeIcon className="size-5" />;
|
||||
return <TimeIcon className="size-5 text-white" />;
|
||||
case "pending":
|
||||
return <span className="text-sm font-bold">{stepNumber}</span>;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user