Skip to content

Commit

Permalink
Merge pull request #62268 from gpoussel/fix-62207
Browse files Browse the repository at this point in the history
Fix #62207 ('null' tooltips on Quick Open view)
  • Loading branch information
sandy081 committed Oct 31, 2018
2 parents 15ac856 + 0077cb2 commit 00135a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/base/browser/ui/iconLabel/iconLabel.ts
Expand Up @@ -138,7 +138,7 @@ export class IconLabel extends Disposable {
this.domNode.title = options && options.title ? options.title : '';

if (this.labelNode instanceof HighlightedLabel) {
this.labelNode.set(label || '', options ? options.matches : void 0, options ? options.title : void 0, options && options.labelEscapeNewLines);
this.labelNode.set(label || '', options ? options.matches : void 0, options && options.title ? options.title : void 0, options && options.labelEscapeNewLines);
} else {
this.labelNode.textContent = label || '';
}
Expand Down

0 comments on commit 00135a2

Please sign in to comment.