We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7775ad commit c66b7abCopy full SHA for c66b7ab
src/app/(dashboard)/peer/page.tsx
@@ -31,6 +31,7 @@ import dayjs from "dayjs";
31
import { isEmpty, trim } from "lodash";
32
import {
33
Cpu,
34
+ Hash,
35
FlagIcon,
36
Globe,
37
History,
@@ -429,6 +430,17 @@ function PeerInformationCard({ peer }: { peer: Peer }) {
429
430
}
431
value={peer.os}
432
/>
433
+
434
+ <Card.ListItem
435
+ label={
436
+ <>
437
+ <Hash size={16} />
438
+ Serial Number
439
+ </>
440
+ }
441
+ value={peer.serial_number}
442
+ />
443
444
<Card.ListItem
445
label={
446
<>
@@ -465,6 +477,7 @@ function PeerInformationCard({ peer }: { peer: Peer }) {
465
477
466
478
value={peer.ui_version?.replace("netbird-desktop-ui/", "")}
467
479
480
468
481
</Card.List>
469
482
</Card>
470
483
);
0 commit comments