Browse Source

Updates search to enable regex by default

main
Keith Daulton 2 years ago
committed by Eric Amodio
parent
commit
3ff8393b84
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/webviews/apps/shared/components/search/search-field.ts

+ 1
- 1
src/webviews/apps/shared/components/search/search-field.ts View File

@ -147,7 +147,7 @@ export class SearchField extends FASTElement {
case = false;
@attr({ mode: 'boolean' })
regex = false;
regex = true;
handleInput(e: Event) {
const value = (e.target as HTMLInputElement)?.value;

Loading…
Cancel
Save