diff --git a/frontend/src/App.jsx b/frontend/src/App.jsx index e2908b2..7783844 100644 --- a/frontend/src/App.jsx +++ b/frontend/src/App.jsx @@ -698,9 +698,20 @@ function HostDrivesCard({ drives, onSelect, t }) { )} - {d.physical_drives?.map((pd, i) => ( - - ))} + {d.physical_drives?.length > 0 && ( +
+ {d.physical_drives.map((pd, i) => ( +
+
+
+ +
+
+ ))} +
+ )} ))}