summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorBob Van Landuyt <bob@gitlab.com>2019-08-01 12:41:42 +0000
committerBob Van Landuyt <bob@gitlab.com>2019-08-01 12:41:42 +0000
commitfc09bb0770ab74572cb2cf706180dce7503e19a0 (patch)
tree7c5a3d6c0a6f51f515da5868b8c485be73b2d436 /app/controllers
parentbeb7d8922746942f1f4108108b04859ba61ea1ea (diff)
parent8992013689e358328d9ae74623b9b29d80f7b17b (diff)
downloadgitlab-ce-fc09bb0770ab74572cb2cf706180dce7503e19a0.tar.gz
Merge branch 'rename-relative-position-move-to-end' into 'master'
Fix bug when moving batches of items to the end See merge request gitlab-org/gitlab-ce!31351
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/boards/issues_controller.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/controllers/boards/issues_controller.rb b/app/controllers/boards/issues_controller.rb
index 90528f75ffd..1d1a72d21f1 100644
--- a/app/controllers/boards/issues_controller.rb
+++ b/app/controllers/boards/issues_controller.rb
@@ -26,7 +26,7 @@ module Boards
list_service = Boards::Issues::ListService.new(board_parent, current_user, filter_params)
issues = list_service.execute
issues = issues.page(params[:page]).per(params[:per] || 20).without_count
- Issue.move_to_end(issues) if Gitlab::Database.read_write?
+ Issue.move_nulls_to_end(issues) if Gitlab::Database.read_write?
issues = issues.preload(:milestone,
:assignees,
project: [