diff options
author | yp05327 <576951401@qq.com> | 2023-08-16 08:10:40 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-15 23:10:40 +0000 |
commit | bc930f332f70ed2259740325592f054cc01a01cf (patch) | |
tree | 0de9eecf892d397730d8c8ef74d9351c38fbe045 /routers/web/shared | |
parent | 8703b6c954893b74a0f97aaa8079c968a4d245cc (diff) | |
download | gitea-bc930f332f70ed2259740325592f054cc01a01cf.tar.gz gitea-bc930f332f70ed2259740325592f054cc01a01cf.zip |
Fix typo of RunerOwnerID (#26508)
Diffstat (limited to 'routers/web/shared')
-rw-r--r-- | routers/web/shared/actions/runners.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/routers/web/shared/actions/runners.go b/routers/web/shared/actions/runners.go index eb84cc4a2e..cab3d78cac 100644 --- a/routers/web/shared/actions/runners.go +++ b/routers/web/shared/actions/runners.go @@ -51,7 +51,7 @@ func RunnersList(ctx *context.Context, opts actions_model.FindRunnerOptions) { ctx.Data["Runners"] = runners ctx.Data["Total"] = count ctx.Data["RegistrationToken"] = token.Token - ctx.Data["RunnerOnwerID"] = opts.OwnerID + ctx.Data["RunnerOwnerID"] = opts.OwnerID ctx.Data["RunnerRepoID"] = opts.RepoID pager := context.NewPagination(int(count), opts.PageSize, opts.Page, 5) |