Refine storage metrics and highlight device links

This commit is contained in:
2025-08-13 02:33:13 -06:00
parent 7f5e0c69da
commit 76bd4fb33b
2 changed files with 17 additions and 8 deletions

View File

@@ -184,7 +184,13 @@ export default function DeviceList({ onSelectDevice }) {
</TableCell>
<TableCell
onClick={() => onSelectDevice && onSelectDevice(r)}
sx={{ cursor: onSelectDevice ? "pointer" : "default" }}
sx={{
color: "#58a6ff",
"&:hover": {
cursor: onSelectDevice ? "pointer" : "default",
textDecoration: onSelectDevice ? "underline" : "none",
},
}}
>
{r.hostname}
</TableCell>