File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
extensions/typescript-language-features/src/languageFeatures Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ class MyCompletionItem extends vscode.CompletionItem {
97
97
this . filterText = this . getFilterText ( completionContext . line , tsEntry . insertText ) ;
98
98
99
99
if ( completionContext . isMemberCompletion && completionContext . dotAccessorContext && ! ( this . insertText instanceof vscode . SnippetString ) ) {
100
- this . filterText = completionContext . dotAccessorContext . text + ( this . insertText || typeof this . label === 'string' ? this . label : this . label . label ) ;
100
+ this . filterText = completionContext . dotAccessorContext . text + ( this . insertText || this . textLabel ) ;
101
101
if ( ! this . range ) {
102
102
const replacementRange = this . getFuzzyWordRange ( ) ;
103
103
if ( replacementRange ) {
You can’t perform that action at this time.
0 commit comments