You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The new search highlighter uses the full-text string as written by the user, meaning that the highlighter will try to highlight whatever the user writes in the full-text search input field. This causes problems when the user starts using ES query string queries like suriano AND che because the highlighter will try to highlight the entire "suriano AND che" string.
A previous iteration of the search highlighter used the createHighlights function which extracted the search highlights from the ES results, meaning that ES has already interpreted the ES query string query. The new search highlighter should use the same (or similar) function.
The text was updated successfully, but these errors were encountered:
The new search highlighter uses the full-text string as written by the user, meaning that the highlighter will try to highlight whatever the user writes in the full-text search input field. This causes problems when the user starts using ES query string queries like
suriano AND che
because the highlighter will try to highlight the entire "suriano AND che" string.A previous iteration of the search highlighter used the createHighlights function which extracted the search highlights from the ES results, meaning that ES has already interpreted the ES query string query. The new search highlighter should use the same (or similar) function.
The text was updated successfully, but these errors were encountered: