SOLR-12614: Make "Nodes" view the default in AdminUI "Cloud" tab

This commit is contained in:
Jan Høydahl 2018-08-03 23:20:48 +02:00
parent 0b59b0ed1d
commit f8db5d0afd
2 changed files with 6 additions and 1 deletions

View File

@ -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.

View File

@ -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);