mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-07-04 11:41:04 +02:00
Change in-progress status color
This commit is contained in:
@ -49,7 +49,7 @@ export function IndexAttemptStatus({
|
|||||||
);
|
);
|
||||||
} else if (status === "in_progress") {
|
} else if (status === "in_progress") {
|
||||||
badge = (
|
badge = (
|
||||||
<Badge size={size} color="fuchsia" icon={FiClock}>
|
<Badge size={size} color="amber" icon={FiClock}>
|
||||||
In Progress
|
In Progress
|
||||||
</Badge>
|
</Badge>
|
||||||
);
|
);
|
||||||
@ -59,12 +59,6 @@ export function IndexAttemptStatus({
|
|||||||
Scheduled
|
Scheduled
|
||||||
</Badge>
|
</Badge>
|
||||||
);
|
);
|
||||||
} else {
|
|
||||||
badge = (
|
|
||||||
<Badge size={size} color="yellow" icon={FiClock}>
|
|
||||||
Initializing
|
|
||||||
</Badge>
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// TODO: remove wrapping `dark` once we have light/dark mode
|
// TODO: remove wrapping `dark` once we have light/dark mode
|
||||||
|
Reference in New Issue
Block a user