Update AppImage

This commit is contained in:
MacRimi
2025-10-26 20:59:59 +01:00
parent 8b26f30e37
commit f1854b5120
2 changed files with 25 additions and 24 deletions

View File

@@ -1522,8 +1522,14 @@ export default function Hardware() {
>
<div className="flex items-center justify-between gap-2 mb-1">
<span className="text-sm font-medium line-clamp-2 break-words flex-1">{device.device}</span>
<Badge className="bg-blue-500/10 text-blue-500 border-blue-500/20 px-2.5 py-0.5 shrink-0">
Ethernet
<Badge
className={
device.network_subtype === "Wireless"
? "bg-purple-500/10 text-purple-500 border-purple-500/20 px-2.5 py-0.5 shrink-0"
: "bg-blue-500/10 text-blue-500 border-blue-500/20 px-2.5 py-0.5 shrink-0"
}
>
{device.network_subtype || "Ethernet"}
</Badge>
</div>
<p className="text-xs text-muted-foreground truncate">{device.vendor}</p>