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/07/12 22:33:49 UTC

svn commit: r1690525 - /lucene/dev/trunk/solr/webapp/web/partials/cores.html

Author: upayavira
Date: Sun Jul 12 20:33:49 2015
New Revision: 1690525

URL: http://svn.apache.org/r1690525
Log:
SOLR-7778 Angular UI: typo preventing core details showing

Modified:
    lucene/dev/trunk/solr/webapp/web/partials/cores.html

Modified: lucene/dev/trunk/solr/webapp/web/partials/cores.html
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/solr/webapp/web/partials/cores.html?rev=1690525&r1=1690524&r2=1690525&view=diff
==============================================================================
--- lucene/dev/trunk/solr/webapp/web/partials/cores.html (original)
+++ lucene/dev/trunk/solr/webapp/web/partials/cores.html Sun Jul 12 20:33:49 2015
@@ -126,7 +126,7 @@ limitations under the License.
 
     </div>
 
-    <div id="data" class="requires-core" ng-show="hasCore">
+    <div id="data" class="requires-core" ng-show="hasCores">
 
       <div class="block" id="core-data">
 
@@ -160,7 +160,7 @@ limitations under the License.
         </div>
       </div>
 
-      <div class="block" id="index-data" ng-show="hasCore">
+      <div class="block" id="index-data" ng-show="hasCores">
 
           <h2><span>Index</span></h2>
 
@@ -221,7 +221,7 @@ limitations under the License.
 
   </div>
 
-  <div id="navigation" class="requires-core clearfix" ng-show="hasCore">
+  <div id="navigation" class="requires-core clearfix" ng-show="hasCores">
     <ul>
       <li ng-repeat="c in cores" ng-class="{current: core.name == c.name}"><a href="#~cores/{{c.name}}">{{c.name}}</a></li>
     </ul>