added failed to status badge
This commit is contained in:
parent
40d2112d1f
commit
526e4a9f48
1 changed files with 6 additions and 1 deletions
|
|
@ -5,7 +5,8 @@ export type Status =
|
|||
| "active"
|
||||
| "unavailable"
|
||||
| "hidden"
|
||||
| "sync";
|
||||
| "sync"
|
||||
| "failed";
|
||||
|
||||
interface StatusBadgeProps {
|
||||
status: Status;
|
||||
|
|
@ -25,6 +26,10 @@ const statusConfig = {
|
|||
label: "Unavailable",
|
||||
className: "text-red-600 dark:text-red-400 ",
|
||||
},
|
||||
failed: {
|
||||
label: "Failed",
|
||||
className: "text-red-600 dark:text-red-400 ",
|
||||
},
|
||||
hidden: {
|
||||
label: "Hidden",
|
||||
className: "text-zinc-400 dark:text-zinc-500 ",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue