From a17fb24c250388a26aa8e0ec33b163f72af4ca17 Mon Sep 17 00:00:00 2001 From: wxiaoguang Date: Sat, 29 Aug 2026 14:19:40 +0800 Subject: [PATCH] fix: add missing query parameters on runner list page (#39163) --- routers/web/shared/actions/runners.go | 1 + 1 file changed, 1 insertion(+) diff --git a/routers/web/shared/actions/runners.go b/routers/web/shared/actions/runners.go index 21a2bb8fc1d..852f87bc75f 100644 --- a/routers/web/shared/actions/runners.go +++ b/routers/web/shared/actions/runners.go @@ -162,6 +162,7 @@ func Runners(ctx *context.Context) { ctx.Data["AllowBulkActions"] = rCtx.IsAdmin pager := context.NewPagination(count, opts.PageSize, opts.Page, 5) + pager.AddParamFromQuery(ctx.Req.URL.Query()) ctx.Data["Page"] = pager