You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2016/06/17 22:06:14 UTC

[2/2] lucene-solr:branch_5x: SOLR-8967: UI should not show the replication tab in the core selector panel in cloud mode

SOLR-8967: UI should not show the replication tab in the core selector panel in cloud mode


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/889c1587
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/889c1587
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/889c1587

Branch: refs/heads/branch_5x
Commit: 889c15872d393c3218d868f49e8b605847982631
Parents: 2d4d3f1
Author: Varun Thacker <va...@gmail.com>
Authored: Mon Apr 11 17:17:03 2016 +0530
Committer: Steve Rowe <sa...@apache.org>
Committed: Fri Jun 17 18:05:58 2016 -0400

----------------------------------------------------------------------
 solr/webapp/web/index.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/889c1587/solr/webapp/web/index.html
----------------------------------------------------------------------
diff --git a/solr/webapp/web/index.html b/solr/webapp/web/index.html
index 5dda1e4..d68d281 100644
--- a/solr/webapp/web/index.html
+++ b/solr/webapp/web/index.html
@@ -211,7 +211,7 @@ limitations under the License.
               <li class="ping" ng-class="{active:page=='ping'}"><a ng-click="ping()"><span>Ping</span><small class="qtime" ng-show="pingMS"> (<span>{{pingMS}}ms</span>)</small></a></li>
               <li class="plugins" ng-class="{active:page=='plugins'}"><a href="#/{{currentCore.name}}/plugins"><span>Plugins / Stats</span></a></li>
               <li ng-hide="isCloudEnabled" class="query" ng-class="{active:page=='query'}"><a href="#/{{currentCore.name}}/query"><span>Query</span></a></li>
-              <li class="replication" ng-class="{active:page=='replication'}"><a href="#/{{currentCore.name}}/replication"><span>Replication</span></a></li>
+              <li ng-hide="isCloudEnabled" class="replication" ng-class="{active:page=='replication'}"><a href="#/{{currentCore.name}}/replication"><span>Replication</span></a></li>
               <li ng-hide="isCloudEnabled" class="schema" ng-class="{active:page=='schema'}"><a href="#/{{currentCore.name}}/schema"><span>Schema</span></a></li>
               <li class="segments" ng-class="{active:page=='segments'}"><a href="#/{{currentCore.name}}/segments"><span>Segments info</span></a></li>
       </ul>