fix style for unknown status

This commit is contained in:
miloschwartz
2026-04-29 12:36:47 -07:00
parent a029b107ae
commit a16f805709

View File

@@ -188,7 +188,7 @@ export default function ResourceInfoBox({}: ResourceInfoBoxType) {
)}
{(!resource.health ||
resource.health === "unknown") && (
<div className="flex items-center space-x-2 text-muted-foreground">
<div className="flex items-center space-x-2">
<Clock className="w-4 h-4 flex-shrink-0" />
<span>{t("resourcesTableUnknown")}</span>
</div>