Display machine serial number instead of model number

Change the Machine Connection panel to show the serial number instead
of the model number. The serial number is more useful for identifying
specific machines, especially when multiple machines of the same model
are in use.

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Jan-Henrik 2025-12-06 23:30:12 +01:00
parent 762cb4bc0e
commit c842334efc

View file

@ -136,8 +136,8 @@ export function MachineConnection({
{machineInfo && (
<div className="bg-gray-50 dark:bg-gray-700/50 p-4 rounded-lg space-y-2 mb-4">
<div className="flex justify-between text-sm">
<span className="font-medium text-gray-600 dark:text-gray-400">Model:</span>
<span className="font-semibold text-gray-900 dark:text-gray-100">{machineInfo.modelNumber}</span>
<span className="font-medium text-gray-600 dark:text-gray-400">Serial Number:</span>
<span className="font-semibold text-gray-900 dark:text-gray-100">{machineInfo.serialNumber}</span>
</div>
<div className="flex justify-between text-sm">
<span className="font-medium text-gray-600 dark:text-gray-400">Max Area:</span>