forked from forgejo/forgejo
Don't filter action runs based on state (#24711)
We should just show all runs. This removes the filtering altogether. - Replaces https://github.com/go-gitea/gitea/pull/24553 # Before   # After  --------- Signed-off-by: Yarden Shoham <git@yardenshoham.com>
This commit is contained in:
parent
5968c63a11
commit
6d2c63f6ff
6 changed files with 1 additions and 61 deletions
|
@ -19,11 +19,6 @@
|
|||
</div>
|
||||
</div>
|
||||
<div class="twelve wide column content">
|
||||
<div class="ui stackable grid">
|
||||
<div class="six wide column">
|
||||
{{template "repo/actions/openclose" .}}
|
||||
</div>
|
||||
</div>
|
||||
{{template "repo/actions/runs_list" .}}
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
<div class="small-menu-items ui compact tiny menu">
|
||||
<a class="{{if not .IsShowClosed}}active {{end}}item" href="{{$.Link}}?workflow={{.CurWorkflow}}&state=open">
|
||||
{{svg "octicon-issue-opened" 16 "gt-mr-3"}}
|
||||
{{.locale.Tr "actions.runs.open_tab" $.NumOpenActionRuns}}
|
||||
</a>
|
||||
<a class="{{if .IsShowClosed}}active {{end}}item" href="{{$.Link}}?workflow={{.CurWorkflow}}&state=closed">
|
||||
{{svg "octicon-issue-closed" 16 "gt-mr-3"}}
|
||||
{{.locale.Tr "actions.runs.closed_tab" $.NumClosedActionRuns}}
|
||||
</a>
|
||||
</div>
|
|
@ -1,4 +1,4 @@
|
|||
<div class="issue list">
|
||||
<div class="issue list gt-m-0">
|
||||
{{range .Runs}}
|
||||
<li class="item gt-df gt-py-3 gt-ab">
|
||||
<div class="issue-item-left gt-df gt-mr-2">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue