mirror of https://github.com/apache/lucene.git
SOLR-12614: Make "Nodes" view the default in AdminUI "Cloud" tab
This commit is contained in:
parent
0b59b0ed1d
commit
f8db5d0afd
|
@ -44,6 +44,11 @@ Upgrade Notes
|
||||||
MemoryDocValues). If you used postingsFormat="Memory" or docValuesFormat="Memory"
|
MemoryDocValues). If you used postingsFormat="Memory" or docValuesFormat="Memory"
|
||||||
switch to "Direct" instead. (Dawid Weiss)
|
switch to "Direct" instead. (Dawid Weiss)
|
||||||
|
|
||||||
|
Other Changes
|
||||||
|
----------------------
|
||||||
|
|
||||||
|
* SOLR-12614: Make "Nodes" view the default in AdminUI "Cloud" tab (janhoy)
|
||||||
|
|
||||||
================== 7.5.0 ==================
|
================== 7.5.0 ==================
|
||||||
|
|
||||||
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this release.
|
||||||
|
|
|
@ -28,7 +28,7 @@ solrAdminApp.controller('CloudController',
|
||||||
$scope.showDebug = false;
|
$scope.showDebug = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
var view = $location.search().view ? $location.search().view : "graph";
|
var view = $location.search().view ? $location.search().view : "nodes";
|
||||||
if (view === "tree") {
|
if (view === "tree") {
|
||||||
$scope.resetMenu("cloud-tree", Constants.IS_ROOT_PAGE);
|
$scope.resetMenu("cloud-tree", Constants.IS_ROOT_PAGE);
|
||||||
treeSubController($scope, Zookeeper);
|
treeSubController($scope, Zookeeper);
|
||||||
|
|
Loading…
Reference in New Issue