Skip to content

Commit

Permalink
Fix #61970
Browse files Browse the repository at this point in the history
  • Loading branch information
sandy081 committed Oct 29, 2018
1 parent 8db3ee0 commit 318250a
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 @@ -137,7 +137,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, void 0, options && options.labelEscapeNewLines);
this.labelNode.set(label || '', options ? options.matches : void 0, options ? options.title : void 0, options && options.labelEscapeNewLines);
} else {
this.labelNode.textContent = label || '';
}
Expand Down

0 comments on commit 318250a

Please sign in to comment.