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:
Simone Gotti 2019-07-05 16:20:18 +02:00
parent 7c80b875f8
commit 83755c8a78
1 changed files with 0 additions and 3 deletions

View File

@ -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;
}