1
0
mirror of https://github.com/community-scripts/ProxmoxVE.git synced 2025-04-16 18:51:54 +00:00

Change MISC from red to green (#815)

This commit is contained in:
CanbiZ 2024-12-13 22:52:37 +01:00 committed by GitHub
parent 69fe688418
commit ca902c50fb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -26,7 +26,7 @@ export const formattedBadge = (type: string) => {
<Badge className="text-yellow-500/75 border-yellow-500/75">LXC</Badge>
);
case "misc":
return <Badge className="text-red-500/75 border-red-500/75">MISC</Badge>;
return <Badge className="text-green-500/75 border-green-500/75">MISC</Badge>;
}
return null;
};