SOLR-11645: Fix problem with no Args display in admin UI.

This commit is contained in:
elyograg 2017-11-18 08:41:53 -07:00
parent 6f99196e81
commit 0dadf2c2a8
2 changed files with 5 additions and 1 deletions

View File

@ -120,6 +120,10 @@ Bug Fixes
* SOLR-11553: JSON Facet API: facet refinement could use UIF in phase one and DV uninversion in phase 2, resulting
in too much memory use. (yonik)
* SOLR-11645: When the java commandline had exact duplicate arguments, the
admin UI dashboard would not display any commandline arguments.
(Webster Homer via Shawn Heisey)
Optimizations
----------------------
* SOLR-11285: Refactor autoscaling framework to avoid direct references to Zookeeper and Solr

View File

@ -209,7 +209,7 @@ limitations under the License.
<li class="command_line_args"><dl class="clearfix">
<dt><span>Args</span></dt>
<dd ng-repeat="arg in commandLineArgs" ng-class="{'odd':$odd}">{{arg}}</dd>
<dd ng-repeat="arg in commandLineArgs track by $index" ng-class="{'odd':$odd}">{{arg}}</dd>
</dl></li>
</ul>