Scopes search: Don't regex-escape filter input value (#98117)

This commit is contained in:
Dominik Prokop 2024-12-17 17:05:38 +01:00 committed by GitHub
parent d6ebec6921
commit 0cd4c751a6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -46,6 +46,7 @@ export function ScopesTreeSearch({ anyChildExpanded, nodePath, query, onNodeUpda
value={inputState.value}
className={styles.input}
data-testid="scopes-tree-search"
escapeRegex={false}
onChange={(value) => {
setInputState({ value, isDirty: true });
}}