Skip to content

Commit a6d74f9

Browse files
committed
[grid] Displaying test name when se:name is added
Fixes SeleniumHQ/docker-selenium#1469
1 parent 2583faf commit a6d74f9

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

‎javascript/grid-ui/src/components/RunningSessions/RunningSessions.tsx

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -449,28 +449,28 @@ class RunningSessions extends React.Component<RunningSessionsProps, RunningSessi
449449
(row.vnc as string).length > 0 &&
450450
this.displayLiveView(row.id as string)
451451
}
452-
{row.id}
452+
{row.name}
453453
{
454454
(row.vnc as string).length > 0 &&
455455
<Dialog
456456
onClose={this.handleLiveViewClose}
457-
aria-labelledby='live-view-dialog'
457+
aria-labelledby="live-view-dialog"
458458
open={rowLiveViewOpen === row.id}
459459
fullWidth={true}
460460
maxWidth={'xl'}
461461
fullScreen
462462
TransitionComponent={Transition}
463463
>
464464
<DialogTitle id='live-view-dialog'>
465-
<Typography gutterBottom component='span'
465+
<Typography gutterBottom component="span"
466466
className={classes.textPadding}
467467
>
468-
<Box fontWeight='fontWeightBold'
468+
<Box fontWeight="fontWeightBold"
469469
mr={1}
470-
display='inline'>
470+
display="inline">
471471
Session
472472
</Box>
473-
{row.name}
473+
{row.name} - {row.id}
474474
</Typography>
475475
<OsLogo
476476
osName={row.platformName as string}/>
@@ -515,15 +515,15 @@ class RunningSessions extends React.Component<RunningSessionsProps, RunningSessi
515515
maxWidth={'md'}
516516
>
517517
<DialogTitle id='session-info-dialog'>
518-
<Typography gutterBottom component='span'
518+
<Typography gutterBottom component="span"
519519
className={classes.textPadding}
520520
>
521-
<Box fontWeight='fontWeightBold'
521+
<Box fontWeight="fontWeightBold"
522522
mr={1}
523-
display='inline'>
523+
display="inline">
524524
Session
525525
</Box>
526-
{row.name}
526+
{row.name} - {row.id}
527527
</Typography>
528528
<OsLogo osName={row.platformName as string}/>
529529
<BrowserLogo

0 commit comments

Comments
 (0)