File tree Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Expand file tree Collapse file tree 2 files changed +14
-0
lines changed Original file line number Diff line number Diff line change @@ -31,6 +31,7 @@ import dayjs from "dayjs";
31
31
import { isEmpty , trim } from "lodash" ;
32
32
import {
33
33
Cpu ,
34
+ Barcode ,
34
35
FlagIcon ,
35
36
Globe ,
36
37
History ,
@@ -429,6 +430,17 @@ function PeerInformationCard({ peer }: { peer: Peer }) {
429
430
}
430
431
value = { peer . os }
431
432
/>
433
+
434
+ < Card . ListItem
435
+ label = {
436
+ < >
437
+ < Barcode size = { 16 } />
438
+ Serial Number
439
+ </ >
440
+ }
441
+ value = { peer . serial_number }
442
+ />
443
+
432
444
< Card . ListItem
433
445
label = {
434
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
) ;
Original file line number Diff line number Diff line change @@ -23,4 +23,5 @@ export interface Peer {
23
23
city_name : string ;
24
24
country_code : string ;
25
25
connection_ip : string ;
26
+ serial_number : string ;
26
27
}
You can’t perform that action at this time.
0 commit comments