mirror of https://github.com/apache/lucene.git
SOLR-14422 progressive render load main admin page (#1654)
* hide error message template until angular app has loaded
This commit is contained in:
parent
31e7ad9ee2
commit
45573b9f1d
|
@ -106,7 +106,7 @@ limitations under the License.
|
|||
|
||||
<div id="main" class="clearfix">
|
||||
|
||||
<div class="header-message" id="init-failures" ng-show="showInitFailures">
|
||||
<div class="header-message" id="init-failures" ng-show="showInitFailures" ng-cloak>
|
||||
|
||||
<h2>SolrCore Initialization Failures</h2>
|
||||
<ul>
|
||||
|
@ -126,12 +126,12 @@ limitations under the License.
|
|||
<h2>Connection to Solr lost</h2>
|
||||
<p>Please check the Solr instance.</p>
|
||||
</div>
|
||||
<div class="connection-status header-message" id="connection-status-recovered" ng-show="connectionRecovered">
|
||||
<h2>Connection recovered...</h2>
|
||||
<p>Continuing to load data...</p>
|
||||
</div>
|
||||
<div class="connection-status header-message" id="connection-status-recovered" ng-show="connectionRecovered">
|
||||
<h2>Connection recovered...</h2>
|
||||
<p>Continuing to load data...</p>
|
||||
</div>
|
||||
</div>
|
||||
<div id="http-exception" class="header-message" ng-repeat="(url, exception) in exceptions">
|
||||
<div id="http-exception" class="header-message" ng-repeat="(url, exception) in exceptions" ng-cloak>
|
||||
<div class="exception">{{exception.msg}}</div>
|
||||
</div>
|
||||
|
||||
|
|
Loading…
Reference in New Issue