@@ -449,28 +449,28 @@ class RunningSessions extends React.Component<RunningSessionsProps, RunningSessi
449
449
( row . vnc as string ) . length > 0 &&
450
450
this . displayLiveView ( row . id as string )
451
451
}
452
- { row . id }
452
+ { row . name }
453
453
{
454
454
( row . vnc as string ) . length > 0 &&
455
455
< Dialog
456
456
onClose = { this . handleLiveViewClose }
457
- aria-labelledby = ' live-view-dialog'
457
+ aria-labelledby = " live-view-dialog"
458
458
open = { rowLiveViewOpen === row . id }
459
459
fullWidth = { true }
460
460
maxWidth = { 'xl' }
461
461
fullScreen
462
462
TransitionComponent = { Transition }
463
463
>
464
464
< DialogTitle id = 'live-view-dialog' >
465
- < Typography gutterBottom component = ' span'
465
+ < Typography gutterBottom component = " span"
466
466
className = { classes . textPadding }
467
467
>
468
- < Box fontWeight = ' fontWeightBold'
468
+ < Box fontWeight = " fontWeightBold"
469
469
mr = { 1 }
470
- display = ' inline' >
470
+ display = " inline" >
471
471
Session
472
472
</ Box >
473
- { row . name }
473
+ { row . name } - { row . id }
474
474
</ Typography >
475
475
< OsLogo
476
476
osName = { row . platformName as string } />
@@ -515,15 +515,15 @@ class RunningSessions extends React.Component<RunningSessionsProps, RunningSessi
515
515
maxWidth = { 'md' }
516
516
>
517
517
< DialogTitle id = 'session-info-dialog' >
518
- < Typography gutterBottom component = ' span'
518
+ < Typography gutterBottom component = " span"
519
519
className = { classes . textPadding }
520
520
>
521
- < Box fontWeight = ' fontWeightBold'
521
+ < Box fontWeight = " fontWeightBold"
522
522
mr = { 1 }
523
- display = ' inline' >
523
+ display = " inline" >
524
524
Session
525
525
</ Box >
526
- { row . name }
526
+ { row . name } - { row . id }
527
527
</ Typography >
528
528
< OsLogo osName = { row . platformName as string } />
529
529
< BrowserLogo
0 commit comments