feat: Update status color for failed knowledge processing

This commit is contained in:
n4ze3m 2024-07-16 10:19:29 +05:30
parent 79e5113ee8
commit e7b70e5b8d

View File

@ -37,8 +37,9 @@ export const KnowledgeSettings = () => {
const statusColor = { const statusColor = {
finished: "green", finished: "green",
processing: "blue", processing: "yellow",
pending: "gray" pending: "gray",
failed: "red"
} }
return ( return (