mirror of https://github.com/apache/lucene.git
SOLR-14483 (#1988)
* fixed broken select box * converted tabs to spaces :sigh: * Fix the refreshing of the scope * track fix Co-authored-by: sayan.das <sayan.das@gdn-commerce.com>
This commit is contained in:
parent
0bd2f314b7
commit
d7e58ede0e
|
@ -265,6 +265,8 @@ Bug Fixes
|
||||||
|
|
||||||
* SOLR-14924: Some ReplicationHandler metrics are reported using incorrect types. (ab)
|
* SOLR-14924: Some ReplicationHandler metrics are reported using incorrect types. (ab)
|
||||||
|
|
||||||
|
* SOLR-14483: Fix empty drop down for adding replica in Admin UI (Sayan Das via Eric Pugh)
|
||||||
|
|
||||||
Other Changes
|
Other Changes
|
||||||
---------------------
|
---------------------
|
||||||
|
|
||||||
|
|
|
@ -123,6 +123,11 @@ limitations under the License.
|
||||||
padding-right: 3px;
|
padding-right: 3px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#content #collections .chosen-container.chosen-container-single
|
||||||
|
{
|
||||||
|
width: 100% !important;
|
||||||
|
}
|
||||||
|
|
||||||
#content #collections .actions form .buttons
|
#content #collections .actions form .buttons
|
||||||
{
|
{
|
||||||
padding-top: 10px;
|
padding-top: 10px;
|
||||||
|
|
|
@ -212,7 +212,7 @@ solrAdminApp.controller('CollectionsController',
|
||||||
$scope.nodes = [];
|
$scope.nodes = [];
|
||||||
var children = data.tree[0].children;
|
var children = data.tree[0].children;
|
||||||
for (var child in children) {
|
for (var child in children) {
|
||||||
$scope.nodes.push(children[child].data.title);
|
$scope.nodes.push(children[child].text);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
@ -257,7 +257,7 @@ solrAdminApp.controller('CollectionsController',
|
||||||
$timeout(function () {
|
$timeout(function () {
|
||||||
shard.replicaAdded = false;
|
shard.replicaAdded = false;
|
||||||
shard.showAdd = false;
|
shard.showAdd = false;
|
||||||
$$scope.refresh();
|
$scope.refresh();
|
||||||
}, 2000);
|
}, 2000);
|
||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
|
@ -335,7 +335,7 @@ limitations under the License.
|
||||||
<select chosen ng-model="shard.replicaNodeName" ng-options="node for node in nodes" class="other">
|
<select chosen ng-model="shard.replicaNodeName" ng-options="node for node in nodes" class="other">
|
||||||
<option value="">No specified node</option>
|
<option value="">No specified node</option>
|
||||||
</select>
|
</select>
|
||||||
node: {{shard.replicaNodeName}}
|
<span ng-if="shard.replicaNodeName">node: {{shard.replicaNodeName}}</span>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
<p class="clearfix note error" ng-show="createReplicaMessage">
|
<p class="clearfix note error" ng-show="createReplicaMessage">
|
||||||
|
|
Loading…
Reference in New Issue