From 83755c8a78904417f4cb5fc1f32499a7694fa0c1 Mon Sep 17 00:00:00 2001 From: Simone Gotti Date: Fri, 5 Jul 2019 16:20:18 +0200 Subject: [PATCH] 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 --- src/components/runs.vue | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/components/runs.vue b/src/components/runs.vue index 723d5c2..19ed9c1 100644 --- a/src/components/runs.vue +++ b/src/components/runs.vue @@ -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; }