Przeglądaj źródła

Fixes search input help text

main
Eric Amodio 1 rok temu
rodzic
commit
6bbd09600b
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      src/webviews/apps/shared/components/search/search-input.ts

+ 1
- 1
src/webviews/apps/shared/components/search/search-input.ts Wyświetl plik

@ -491,7 +491,7 @@ export class SearchInput extends FASTElement {
updateHelpTextCore() {
const cursor = this.input?.selectionStart;
const value = this.value;
if (cursor != null && value.length !== 0 && !value.includes(':')) {
if (cursor != null && value.length !== 0 && value.includes(':')) {
const regex =
/(?:^|[\b\s]*)((=:|message:|@:|author:|#:|commit:|\?:|file:|~:|change:)(?:"[^"]*"?|\w*))(?:$|[\b\s])/gi;

Ładowanie…
Anuluj
Zapisz