mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
Fix action runner last online state on edit page (#25337)
Backport fix for action runner last online state not showing in `release/v1.20` - fixes #25336
This commit is contained in:
parent
aa4c9c3215
commit
05431593ef
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@
|
|||
</div>
|
||||
<div class="field gt-dib gt-mr-4">
|
||||
<label>{{.locale.Tr "actions.runners.last_online"}}</label>
|
||||
<span>{{if .LastOnline}}{{TimeSinceUnix .LastOnline $.locale}}{{else}}{{$.locale.Tr "never"}}{{end}}</span>
|
||||
<span>{{if .Runner.LastOnline}}{{TimeSinceUnix .Runner.LastOnline $.locale}}{{else}}{{$.locale.Tr "never"}}{{end}}</span>
|
||||
</div>
|
||||
<div class="field gt-dib gt-mr-4">
|
||||
<label>{{.locale.Tr "actions.runners.agent_labels"}}</label>
|
||||
|
|
Loading…
Reference in a new issue