Pārlūkot izejas kodu

Fixes "loose" text from getting lost in search

main
Eric Amodio pirms 1 gada
vecāks
revīzija
06edc1a511
1 mainītis faili ar 2 papildinājumiem un 2 dzēšanām
  1. +2
    -2
      src/git/search.ts

+ 2
- 2
src/git/search.ts Parādīt failu

@ -123,8 +123,8 @@ export function parseSearchQuery(search: SearchQuery): Map
({ value, text } = match.groups);
if (text) {
op = text === '@me' ? 'author:' : isSha(text) ? 'commit:' : 'message:';
if (!normalizeSearchOperatorsMap.has(op)) {
if (!normalizeSearchOperatorsMap.has(text.trim() as SearchOperators)) {
op = text === '@me' ? 'author:' : isSha(text) ? 'commit:' : 'message:';
value = text;
}
}

Notiek ielāde…
Atcelt
Saglabāt