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 2016/03/11 14:26:06 UTC

lucene-solr git commit: SOLR-8730: Fix highlighting in new UI query pane

Repository: lucene-solr
Updated Branches:
  refs/heads/master 1e05d3be7 -> fe21f7a4c


SOLR-8730: Fix highlighting in new UI query pane


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/fe21f7a4
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/fe21f7a4
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/fe21f7a4

Branch: refs/heads/master
Commit: fe21f7a4c3a135caa39b1e25e640bc28c069b0a6
Parents: 1e05d3b
Author: Upayavira <uv...@odoko.co.uk>
Authored: Fri Mar 11 13:26:01 2016 +0000
Committer: Upayavira <uv...@odoko.co.uk>
Committed: Fri Mar 11 13:26:01 2016 +0000

----------------------------------------------------------------------
 solr/webapp/web/partials/query.html | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/fe21f7a4/solr/webapp/web/partials/query.html
----------------------------------------------------------------------
diff --git a/solr/webapp/web/partials/query.html b/solr/webapp/web/partials/query.html
index 87f2f4e..31bc242 100644
--- a/solr/webapp/web/partials/query.html
+++ b/solr/webapp/web/partials/query.html
@@ -215,26 +215,26 @@ limitations under the License.
         <div class="fieldset" ng-show="isHighlight">
 
         <label for="hl_fl" title="Fields to highlight on.">hl.fl</label>
-        <input type="text" ng-model="hl.fl" name="hl.fl" id="hl_fl" value="" title="Fields to highlight on.">
+        <input type="text" ng-model="hl['hl.fl']" name="hl.fl" id="hl_fl" value="" title="Fields to highlight on.">
 
         <label for="hl_simple_pre">hl.simple.pre</label>
-        <input type="text" ng-model="hl['simple.pre']" name="hl.simple.pre" id="hl_simple_pre" value="<em>">
+        <input type="text" ng-model="hl['hl.simple.pre']" name="hl.simple.pre" id="hl_simple_pre" value="<em>">
 
         <label for="hl_simple_post">hl.simple.post</label>
-        <input type="text" ng-model="hl['simple.post']"  name="hl.simple.post" id="hl_simple_post" value="</em>">
+        <input type="text" ng-model="hl['hl.simple.post']"  name="hl.simple.post" id="hl_simple_post" value="</em>">
 
         <label for="hl_requireFieldMatch" class="checkbox">
-          <input type="checkbox" ng-model="hl.requireFieldMatch" name="hl.requireFieldMatch" id="hl_requireFieldMatch" value="true">
+          <input type="checkbox" ng-model="hl['hl.requireFieldMatch']" name="hl.requireFieldMatch" id="hl_requireFieldMatch" value="true">
           hl.requireFieldMatch
         </label>
 
         <label for="hl_usePhraseHighlighter" class="checkbox">
-          <input type="checkbox" ng-model="hl.usePhraseHighLighter" name="hl.usePhraseHighlighter" id="hl_usePhraseHighlighter" value="true">
+          <input type="checkbox" ng-model="hl['usePhraseHighLighter']" name="hl.usePhraseHighlighter" id="hl_usePhraseHighlighter" value="true">
           hl.usePhraseHighlighter
         </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['hightlightMultiTerm']" name="hl.highlightMultiTerm" id="hl_highlightMultiTerm" value="true">
           hl.highlightMultiTerm
         </label>