Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRémy Coutable <remy@rymai.me>2018-06-06 09:11:20 +0300
committerRémy Coutable <remy@rymai.me>2018-06-06 09:11:20 +0300
commitaf07c490b2a32ed4c88e387d1133e7882f79abc5 (patch)
treefe79a965e1e3fba74e6604883af0a4afcdbfa0f0
parent9b8370a2103dc5b922a272c8b1931c995e6767ea (diff)
parent7136cf96e1a3ea48285bb6d6fbd2e680dd624b60 (diff)
Merge branch 'blackst0ne-rails5-fix-url_for-in-app-views-admin-runners-index-html-haml' into 'master'
Resolve "[Rails5] Fix params in app/views/admin/runners/index.html.haml" Closes #47377 See merge request gitlab-org/gitlab-ce!19461
-rw-r--r--app/views/admin/runners/index.html.haml2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/views/admin/runners/index.html.haml b/app/views/admin/runners/index.html.haml
index f38aeb151df..8dfd176f1b7 100644
--- a/app/views/admin/runners/index.html.haml
+++ b/app/views/admin/runners/index.html.haml
@@ -67,7 +67,7 @@
%th Projects
%th Jobs
%th Tags
- %th= link_to 'Last contact', admin_runners_path(params.slice(:search).merge(sort: 'contacted_asc'))
+ %th= link_to 'Last contact', admin_runners_path(safe_params.slice(:search).merge(sort: 'contacted_asc'))
%th
- @runners.each do |runner|