Commit 272c474a authored by Stan Hu's avatar Stan Hu

Order GeoNodes by ID to keep them in the same place

parent 570565fd
......@@ -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