Skip to content

Commit

Permalink
ADD docker column with on/off
Browse files Browse the repository at this point in the history
  • Loading branch information
dolf321 authored and dolf321 committed May 22, 2023
1 parent 5473ccd commit 75eda0e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions web/src/pages/core/super/Playgrounds.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import standardErrorHandler from '../../../utils/standardErrorHandler';
import KillAllSessions from '../../../components/shared/KillAllSessions';



const useStyles = makeStyles((theme) => ({
paper: {
height: 700,
Expand Down Expand Up @@ -92,6 +93,13 @@ const useColumns = (state, enqueueSnackbar) => ([
</React.Fragment>
),
},
{
field: 'docker', headerName: 'Docker', width: 100, renderCell: ({row}) => (
<React.Fragment>
{row.docker ? <DoneIcon color={'primary'}/> : <ClearIcon color={'error'}/> }
</React.Fragment>
),
},
{
field: 'kill', headerName: 'Kill Session', width: 150, renderCell: ({row}) => (
<Button
Expand Down

0 comments on commit 75eda0e

Please sign in to comment.