Skip to content

Commit eec9689

Browse files
authored
Fix workspace symbol search (#211682)
Fixes #211672
1 parent dfa434a commit eec9689

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

extensions/typescript-language-features/src/languageFeatures/workspaceSymbols.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ class TypeScriptWorkspaceSymbolProvider implements vscode.WorkspaceSymbolProvide
8989
}
9090

9191
private toSymbolInformation(item: Proto.NavtoItem): vscode.SymbolInformation | undefined {
92-
if (!item.containerName || item.kind === 'alias') {
92+
if (item.kind === 'alias' && !item.containerName) {
9393
return;
9494
}
9595

0 commit comments

Comments
 (0)