You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2020/05/08 11:38:50 UTC

[lucene-solr] branch branch_8_5 updated: SOLR-14411: Fix Admin UI collection/core drop-downs placeholder text. Completes work started in SOLR-14359

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch branch_8_5
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/branch_8_5 by this push:
     new 5acbf14  SOLR-14411: Fix Admin UI collection/core drop-downs placeholder text. Completes work started in SOLR-14359
5acbf14 is described below

commit 5acbf143d99476e59144637ba50da7794cc51d06
Author: Jan Høydahl <ja...@apache.org>
AuthorDate: Fri May 8 12:52:17 2020 +0200

    SOLR-14411: Fix Admin UI collection/core drop-downs placeholder text. Completes work started in SOLR-14359
---
 solr/CHANGES.txt           | 3 ++-
 solr/webapp/web/index.html | 4 ++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 6bc75ea..7c2adfb 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -10,7 +10,8 @@ Consult the LUCENE_CHANGES.txt file for additional, low level, changes in this r
 
 Bug Fixes
 ---------------------
-(No changes)
+
+* SOLR-14411: Fix Admin UI collection/core drop-downs placeholder text. Completes work started in SOLR-14359 (janhoy)
 
 ==================  8.5.1 ==================
 
diff --git a/solr/webapp/web/index.html b/solr/webapp/web/index.html
index bb335c2..452c5b3 100644
--- a/solr/webapp/web/index.html
+++ b/solr/webapp/web/index.html
@@ -180,7 +180,7 @@ limitations under the License.
           <div ng-show="!http401">
             <div id="collection-selector" ng-show="isCloudEnabled">
               <div id="has-collections" ng-show="collections.length!=0">
-                <select data-placeholder-text-single="Collection Selector"
+                <select placeholder-text-single="'Collection Selector'"
                         ng-model="currentCollection"
                         chosen
                         ng-change="showCollection(currentCollection)"
@@ -206,7 +206,7 @@ limitations under the License.
             </div>
             <div id="core-selector">
               <div id="has-cores" ng-show="cores.length!=0">
-                <select data-placeholder-text-single="Core Selector"
+                <select placeholder-text-single="'Core Selector'"
                         ng-model="currentCore"
                         chosen
                         ng-change="showCore(currentCore)"