Commit 9b99b3e4 authored by Robert Speicher's avatar Robert Speicher

Merge branch 'sh-geo-node-ordering' into 'master'

Order GeoNodes by ID to keep them in the same place

See merge request !1611
parents d6417faa 272c474a
......@@ -3,7 +3,7 @@ class Admin::GeoNodesController < Admin::ApplicationController
before_action :load_node, only: [:destroy, :repair, :toggle, :status]
def index
@nodes = GeoNode.all
@nodes = GeoNode.all.order(:id)
@node = GeoNode.new
unless Gitlab::Geo.license_allows?
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment