We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c477d76 commit 2f6fc04Copy full SHA for 2f6fc04
1 file changed
packages/web/src/features/search/parser.ts
@@ -244,7 +244,9 @@ const transformTreeToIR = async ({
244
case RevisionExpr:
245
return {
246
branch: {
247
- pattern: value,
+ // Special case - "*" means search all branches. Passing in a
248
+ // blank string will match all branches.
249
+ pattern: value === '*' ? "" : value,
250
exact: false
251
},
252
query: "branch"
0 commit comments