Skip to content

Commit dedbe45

Browse files
display serial number on peer information
Signed-off-by: Edouard Vanbelle <[email protected]>
1 parent c7775ad commit dedbe45

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

src/app/(dashboard)/peer/page.tsx

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ import dayjs from "dayjs";
3131
import { isEmpty, trim } from "lodash";
3232
import {
3333
Cpu,
34+
Barcode,
3435
FlagIcon,
3536
Globe,
3637
History,
@@ -429,6 +430,17 @@ function PeerInformationCard({ peer }: { peer: Peer }) {
429430
}
430431
value={peer.os}
431432
/>
433+
434+
<Card.ListItem
435+
label={
436+
<>
437+
<Barcode size={16} />
438+
Serial Number
439+
</>
440+
}
441+
value={peer.serial_number}
442+
/>
443+
432444
<Card.ListItem
433445
label={
434446
<>
@@ -465,6 +477,7 @@ function PeerInformationCard({ peer }: { peer: Peer }) {
465477
}
466478
value={peer.ui_version?.replace("netbird-desktop-ui/", "")}
467479
/>
480+
468481
</Card.List>
469482
</Card>
470483
);

0 commit comments

Comments
 (0)