The grid (core) ยท console.warn
a filter asked for a case-sensitive comparis...
Printed by The grid (core), prefixed [lattice], since 1.72.0.
Warnings reference › source.splunk.casesensitive
- Identifier
source.splunk.casesensitive- Raised by
- The grid (core)
- Since
- 1.72.0
What happened
A condition carried caseSensitive: true, and the SPL search form the adapter pushes matches values case-insensitively. The filter is still pushed - refusing it outright would be worse - but it may match rows the same condition excludes in the browser, so the difference is named rather than left to be discovered.
The fix
Drop caseSensitive from the condition so the grid and Splunk agree, or leave that column's filter to the grid.
The smallest fix
grid.filters.set({ col: 'host', op: 'eq', value: 'FW1' });
Reference
Covered in full at the API reference.