mirror of
https://github.com/jhbruhn/respira.git
synced 2026-01-27 10:23:41 +00:00
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:
parent
762cb4bc0e
commit
c842334efc
1 changed files with 2 additions and 2 deletions
|
|
@ -136,8 +136,8 @@ export function MachineConnection({
|
||||||
{machineInfo && (
|
{machineInfo && (
|
||||||
<div className="bg-gray-50 dark:bg-gray-700/50 p-4 rounded-lg space-y-2 mb-4">
|
<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">
|
<div className="flex justify-between text-sm">
|
||||||
<span className="font-medium text-gray-600 dark:text-gray-400">Model:</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.modelNumber}</span>
|
<span className="font-semibold text-gray-900 dark:text-gray-100">{machineInfo.serialNumber}</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="flex justify-between text-sm">
|
<div className="flex justify-between text-sm">
|
||||||
<span className="font-medium text-gray-600 dark:text-gray-400">Max Area:</span>
|
<span className="font-medium text-gray-600 dark:text-gray-400">Max Area:</span>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue