You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by up...@apache.org on 2015/10/07 14:30:17 UTC

svn commit: r1707275 - in /lucene/dev/branches/branch_5x: ./ solr/ solr/webapp/ solr/webapp/web/index.html solr/webapp/web/partials/collection_overview.html

Author: upayavira
Date: Wed Oct  7 12:30:16 2015
New Revision: 1707275

URL: http://svn.apache.org/viewvc?rev=1707275&view=rev
Log:
SOLR-4388 Fix overview link and autoAddReplicas

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/solr/   (props changed)
    lucene/dev/branches/branch_5x/solr/webapp/   (props changed)
    lucene/dev/branches/branch_5x/solr/webapp/web/index.html
    lucene/dev/branches/branch_5x/solr/webapp/web/partials/collection_overview.html

Modified: lucene/dev/branches/branch_5x/solr/webapp/web/index.html
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/webapp/web/index.html?rev=1707275&r1=1707274&r2=1707275&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/webapp/web/index.html (original)
+++ lucene/dev/branches/branch_5x/solr/webapp/web/index.html Wed Oct  7 12:30:16 2015
@@ -177,7 +177,7 @@ limitations under the License.
           </div>
           <div id="collection-menu" class="sub-menu" ng-show="currentCollection">
             <ul>
-              <li class="overview" ng-class="{active:page=='collection-overview'}"><a href="#/{{currentCore.name}}/collection-overview"><span>Overview</span></a></li>
+              <li class="overview" ng-class="{active:page=='collection-overview'}"><a href="#/{{currentCollection.name}}/collection-overview"><span>Overview</span></a></li>
               <li class="analysis" ng-class="{active:page=='analysis'}"><a href="#/{{currentCollection.name}}/analysis"><span>Analysis</span></a></li>
               <li class="dataimport" ng-class="{active:page=='dataimport'}"><a href="#/{{currentCollection.name}}/dataimport"><span>Dataimport</span></a></li>
               <li class="documents" ng-class="{active:page=='documents'}"><a href="#/{{currentCollection.name}}/documents"><span>Documents</span></a></li>

Modified: lucene/dev/branches/branch_5x/solr/webapp/web/partials/collection_overview.html
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/webapp/web/partials/collection_overview.html?rev=1707275&r1=1707274&r2=1707275&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/webapp/web/partials/collection_overview.html (original)
+++ lucene/dev/branches/branch_5x/solr/webapp/web/partials/collection_overview.html Wed Oct  7 12:30:16 2015
@@ -36,7 +36,7 @@ limitations under the License.
             <dd class="value">{{selectedCollection.replicationFactor}}</dd>
 
           <dt>Auto-add replicas:</dt>
-            <dd class="ico value" ng-class="selectedCollection.autoAddReplicas ? 'ico-1' : 'ico-0'"><span>yes</span></dd>
+            <dd class="ico value" ng-class="selectedCollection.autoAddReplicas=='true' ? 'ico-1' : 'ico-0'"><span>yes</span></dd>
 
           <dt>Router name:</dt>
             <dd class="value">{{selectedCollection.router.name}}</dd>