From f8db5d0afd34ebea4ae414a2eb148f926830be34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20H=C3=B8ydahl?= Date: Fri, 3 Aug 2018 23:20:48 +0200 Subject: [PATCH] SOLR-12614: Make "Nodes" view the default in AdminUI "Cloud" tab --- solr/CHANGES.txt | 5 +++++ solr/webapp/web/js/angular/controllers/cloud.js | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index b9846bd6d66..314d04521b1 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -44,6 +44,11 @@ Upgrade Notes MemoryDocValues). If you used postingsFormat="Memory" or docValuesFormat="Memory" switch to "Direct" instead. (Dawid Weiss) +Other Changes +---------------------- + +* SOLR-12614: Make "Nodes" view the default in AdminUI "Cloud" tab (janhoy) + ================== 7.5.0 ================== Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release. diff --git a/solr/webapp/web/js/angular/controllers/cloud.js b/solr/webapp/web/js/angular/controllers/cloud.js index 08eea38c790..a033ce5ff27 100644 --- a/solr/webapp/web/js/angular/controllers/cloud.js +++ b/solr/webapp/web/js/angular/controllers/cloud.js @@ -28,7 +28,7 @@ solrAdminApp.controller('CloudController', $scope.showDebug = false; }; - var view = $location.search().view ? $location.search().view : "graph"; + var view = $location.search().view ? $location.search().view : "nodes"; if (view === "tree") { $scope.resetMenu("cloud-tree", Constants.IS_ROOT_PAGE); treeSubController($scope, Zookeeper);