runs: show all branches/tags/PRs runs, not only last run
Do like "All runs" just filtered by branches/tags/PRs. In future reintroduce a way to show only last N runs per type and additional filtering
This commit is contained in:
parent
7c80b875f8
commit
83755c8a78
|
@ -171,13 +171,10 @@ export default {
|
|||
if (this.project !== null) {
|
||||
if (this.query == "branches") {
|
||||
group = "/project/" + this.project.id + "/branch";
|
||||
lastrun = true;
|
||||
} else if (this.query == "tags") {
|
||||
group = "/project/" + this.project.id + "/tag";
|
||||
lastrun = true;
|
||||
} else if (this.query == "pullrequests") {
|
||||
group = "/project/" + this.project.id + "/pr";
|
||||
lastrun = true;
|
||||
} else {
|
||||
group = "/project/" + this.project.id;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue