diff --git a/src/views/jobs/JobListView.js b/src/views/jobs/JobListView.js index f48f903d8ddf7c1a64584aebfbe1dcc077766f72..294e790e7a0683362b493ab60d75062c1cf88a3a 100644 --- a/src/views/jobs/JobListView.js +++ b/src/views/jobs/JobListView.js @@ -68,11 +68,9 @@ export function JobListView() { if (tab === 0) { setDeploymentStatus(null); } else if (tab === 1) { - setDeploymentStatus("RUNNING"); + setDeploymentStatus("ONGOING"); } else if (tab === 2) { setDeploymentStatus("FINISHED"); - } else if (tab === 3) { - setDeploymentStatus("QUEUED"); } }; @@ -180,11 +178,10 @@ export function JobListView() { textColor="primary" > <Tab label={<Typography variant="h5">All</Typography>} /> - <Tab label={<Typography variant="h5">Only Running</Typography>} /> + <Tab label={<Typography variant="h5">Only Ongoing</Typography>} /> <Tab - label={<Typography variant="h5">Only Finished</Typography>} + label={<Typography variant="h5">Only Completed</Typography>} /> - <Tab label={<Typography variant="h5">Only Queued</Typography>} /> </Tabs> </Grid> <Grid