We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27c8366 commit c84a57fCopy full SHA for c84a57f
src/providers/FileSystemProvider/TextSearchProvider.ts
@@ -676,7 +676,7 @@ export class TextSearchProvider implements vscode.TextSearchProvider {
676
if (token.isCancellationRequested) {
677
return;
678
}
679
- if (project != undefined && file.doc.includes("/")) {
+ if (project && file.doc.includes("/")) {
680
// Check if this web app file is in the project
681
if (!projectList.includes(file.doc.slice(1))) {
682
// This web app file isn't in the project, so ignore its matches
0 commit comments