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 2019/06/13 09:19:08 UTC

[lucene-solr] branch branch_8x updated: SOLR-13546: Fix typo 'hightlight' in webapp query interface (#704)

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

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


The following commit(s) were added to refs/heads/branch_8x by this push:
     new 8995f21  SOLR-13546: Fix typo 'hightlight' in webapp query interface (#704)
8995f21 is described below

commit 8995f21e4b06de0fa05ee2dfeddae5dbcc569e49
Author: Dag Wieers <da...@gmail.com>
AuthorDate: Thu Jun 13 11:17:49 2019 +0200

    SOLR-13546: Fix typo 'hightlight' in webapp query interface (#704)
    
    Due to a typo in the webapp query interface, the used query string is incorrect.
    
    (cherry picked from commit 3dc1d5e64aebeab0fb331c9ad358b0b2f8c3df60)
---
 solr/webapp/web/partials/query.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/solr/webapp/web/partials/query.html b/solr/webapp/web/partials/query.html
index 2a77355..2918887 100644
--- a/solr/webapp/web/partials/query.html
+++ b/solr/webapp/web/partials/query.html
@@ -235,7 +235,7 @@ limitations under the License.
         </label>
 
         <label for="hl_highlightMultiTerm" class="checkbox">
-          <input type="checkbox" ng-model="hl['hightlightMultiTerm']" name="hl.highlightMultiTerm" id="hl_highlightMultiTerm" value="true">
+          <input type="checkbox" ng-model="hl['highlightMultiTerm']" name="hl.highlightMultiTerm" id="hl_highlightMultiTerm" value="true">
           hl.highlightMultiTerm
         </label>