diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt index 8d0142e0bc0..9ea98277e41 100644 --- a/solr/CHANGES.txt +++ b/solr/CHANGES.txt @@ -328,6 +328,8 @@ Bug Fixes * SOLR-10826: Fix CloudSolrClient to expand the collection parameter correctly (Tim Owen via Varun Thacker) +* SOLR-11039: Next button in Solr admin UI for collection list pagination does not work. (janhoy) + Optimizations ---------------------- diff --git a/solr/webapp/web/js/angular/controllers/cloud.js b/solr/webapp/web/js/angular/controllers/cloud.js index 3636d8059b2..80e7d03da4a 100644 --- a/solr/webapp/web/js/angular/controllers/cloud.js +++ b/solr/webapp/web/js/angular/controllers/cloud.js @@ -249,6 +249,7 @@ var graphSubController = function ($scope, Zookeeper, isRadial) { }; $scope.initGraph(); + $scope.pos = 0; }; solrAdminApp.directive('graph', function(Constants) {