From 05431593ef407fe2d7b552664f7f1d699bb63234 Mon Sep 17 00:00:00 2001 From: derelm <465155+derelm@users.noreply.github.com> Date: Sun, 18 Jun 2023 14:04:35 +0200 Subject: [PATCH] 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 --- templates/shared/actions/runner_edit.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/shared/actions/runner_edit.tmpl b/templates/shared/actions/runner_edit.tmpl index 657d565d64..0985bc603d 100644 --- a/templates/shared/actions/runner_edit.tmpl +++ b/templates/shared/actions/runner_edit.tmpl @@ -13,7 +13,7 @@
- {{if .LastOnline}}{{TimeSinceUnix .LastOnline $.locale}}{{else}}{{$.locale.Tr "never"}}{{end}} + {{if .Runner.LastOnline}}{{TimeSinceUnix .Runner.LastOnline $.locale}}{{else}}{{$.locale.Tr "never"}}{{end}}