fix: Follow Windows Th/Td labels through the updates table

This commit is contained in:
2026-08-13 12:19:47 +00:00
parent a71fd9a9f4
commit 7f348b7b2b
@@ -75,13 +75,13 @@ export function MaintenanceTab({
<Tbody>
{updates.map((u) => (
<Tr key={u.name}>
<Td label="Package">
<Td label={isWindows ? "Update" : "Package"}>
<span className="font-mono text-sm font-medium">{u.name}</span>
</Td>
<Td label="Current">
<span className="font-mono text-xs text-text-secondary">{u.current_version || "n/a"}</span>
</Td>
<Td label="Available">
<Td label={isWindows ? "KB" : "Available"}>
<span className="font-mono text-xs text-success">{u.new_version}</span>
</Td>
</Tr>