From e1f47892da7d566d5dd19c7ea31b4468072fa158 Mon Sep 17 00:00:00 2001 From: cc Date: Tue, 14 Apr 2026 20:25:30 +0200 Subject: [PATCH] Improve OS list display with product name, version and build number --- src/components/oslist.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/src/components/oslist.tsx b/src/components/oslist.tsx index b85cda7..b5a0268 100644 --- a/src/components/oslist.tsx +++ b/src/components/oslist.tsx @@ -200,10 +200,11 @@ export default function OSList() { href={`/os/keys?os=${group.name}/${os.version}_${os.build}`} className="block p-4 border border-border rounded-lg hover:border-foreground/20 transition-colors hover:bg-accent/50" > -
-

{os.name}

-
- {os.build} +
+

{group.name === "iOS" ? os.version : os.name}

+
+ {group.name !== "iOS" &&
{os.version}
} +
{os.build}
@@ -224,10 +225,11 @@ export default function OSList() { href={`/os/keys?os=${group.name}/${os.version}_${os.build}`} className="block p-4 border border-border rounded-lg hover:border-foreground/20 transition-colors hover:bg-accent/50" > -
-

{os.name}

-
- {os.build} +
+

{group.name === "iOS" ? os.version : os.name}

+
+ {group.name !== "iOS" &&
{os.version}
} +
{os.build}