1
0

fix(filters): label highlighting and autocomplete fields now work with in operator

Previously, when creating a filter query with the 'in' operator and multiple values, autocompletion and highlighting was not available. This change now implements a split for each value, seperated by a comma.
This commit is contained in:
kolaente
2024-03-11 15:41:06 +01:00
parent 0529f30e77
commit dbfe162cd2
5 changed files with 39 additions and 17 deletions

View File

@ -46,7 +46,7 @@ The available operators for filtering include:
* `<`: Less than
* `<=`: Less than or equal to
* `like`: Matches a pattern (using wildcard `%`)
* `in`: Matches any value in a list
* `in`: Matches any value in a comma-seperated list of values
To combine multiple conditions, you can use the following logical operators: