substring should be lowercase (#84682)

This commit is contained in:
Tim Levett
2024-03-18 16:40:46 -05:00
committed by GitHub
parent 0606a8e413
commit d3571c399a
@@ -6,7 +6,7 @@ import { BasicValueMatcherOptions } from './types';
const isSubstringMatcher: ValueMatcherInfo<BasicValueMatcherOptions> = {
id: ValueMatcherID.substring,
name: 'Contains Substring',
name: 'Contains substring',
description: 'Match where value for given field is a substring to options value.',
get: (options) => {
return (valueIndex: number, field: Field) => {