Skip to content
Snippets Groups Projects
Commit 8e55d44f authored by Zoltan Runyo's avatar Zoltan Runyo
Browse files

ICSHWI-11787: Log view tabs: Only Completed (failed and successful), Only...

ICSHWI-11787: Log view tabs: Only Completed (failed and successful), Only Ongoing (all 'sub-states': queued, pending, waiting, running)
parent 965fd3f5
No related branches found
No related tags found
2 merge requests!270Merging develop branch to master in order to create RC,!266ICSHWI-11787: Log view tabs: Only Completed (failed and successful), Only...
Pipeline #137529 passed
...@@ -68,11 +68,9 @@ export function JobListView() { ...@@ -68,11 +68,9 @@ export function JobListView() {
if (tab === 0) { if (tab === 0) {
setDeploymentStatus(null); setDeploymentStatus(null);
} else if (tab === 1) { } else if (tab === 1) {
setDeploymentStatus("RUNNING"); setDeploymentStatus("ONGOING");
} else if (tab === 2) { } else if (tab === 2) {
setDeploymentStatus("FINISHED"); setDeploymentStatus("FINISHED");
} else if (tab === 3) {
setDeploymentStatus("QUEUED");
} }
}; };
...@@ -180,11 +178,10 @@ export function JobListView() { ...@@ -180,11 +178,10 @@ export function JobListView() {
textColor="primary" textColor="primary"
> >
<Tab label={<Typography variant="h5">All</Typography>} /> <Tab label={<Typography variant="h5">All</Typography>} />
<Tab label={<Typography variant="h5">Only Running</Typography>} /> <Tab label={<Typography variant="h5">Only Ongoing</Typography>} />
<Tab <Tab
label={<Typography variant="h5">Only Finished</Typography>} label={<Typography variant="h5">Only Completed</Typography>}
/> />
<Tab label={<Typography variant="h5">Only Queued</Typography>} />
</Tabs> </Tabs>
</Grid> </Grid>
<Grid <Grid
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment