Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Space issue in Single Select and Checkbox #97

Open
jayraam opened this issue Oct 17, 2016 · 2 comments
Open

Space issue in Single Select and Checkbox #97

jayraam opened this issue Oct 17, 2016 · 2 comments

Comments

@jayraam
Copy link

jayraam commented Oct 17, 2016

I am facing issue with space in both single select and checkbox filter. When even the string has space it is considered as two separate fields. For example, if field value is FIRST NIAGARA, the single select filter and checkbox filter showing as two separate fields.

  1. FIRST
  2. NIAGARA
    Can you please help me to fix this issue.
@mastermind1981
Copy link

I think the field in ES should be marked as not an indexed one

@annelhote
Copy link

annelhote commented Dec 14, 2017

That's right, you should set it in you mapping :

{
  "mappings" : {
    "YOUR_INDEX" : {
      "properties" : {
        "YOUR_PROPERTY" : {
          "type" : "string",
          "index" : "not_analyzed"
        }
      }
    }
  }
}

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants