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 {
9797 this . filterText = this . getFilterText ( completionContext . line , tsEntry . insertText ) ;
9898
9999 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 ) ;
101101 if ( ! this . range ) {
102102 const replacementRange = this . getFuzzyWordRange ( ) ;
103103 if ( replacementRange ) {
You can’t perform that action at this time.
0 commit comments