diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index 459ea96..c9b18ba 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -596,22 +596,24 @@ const driveTypeBadge = (type, t) => { }; function HostDriveRow({ d, onSelect, t, indent }) { + const isRaid = d.drive_type === "raid"; const healthStatus = d.health_status || "healthy"; - const c = t.health[healthStatus] || t.health.healthy; + const c = isRaid ? t.health.empty : (t.health[healthStatus] || t.health.healthy); return ( ); }