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.project !== null) {
|
||||||
if (this.query == "branches") {
|
if (this.query == "branches") {
|
||||||
group = "/project/" + this.project.id + "/branch";
|
group = "/project/" + this.project.id + "/branch";
|
||||||
lastrun = true;
|
|
||||||
} else if (this.query == "tags") {
|
} else if (this.query == "tags") {
|
||||||
group = "/project/" + this.project.id + "/tag";
|
group = "/project/" + this.project.id + "/tag";
|
||||||
lastrun = true;
|
|
||||||
} else if (this.query == "pullrequests") {
|
} else if (this.query == "pullrequests") {
|
||||||
group = "/project/" + this.project.id + "/pr";
|
group = "/project/" + this.project.id + "/pr";
|
||||||
lastrun = true;
|
|
||||||
} else {
|
} else {
|
||||||
group = "/project/" + this.project.id;
|
group = "/project/" + this.project.id;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue