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