Skip to content

Commit da49345

Browse files
author
Benjamin Pasero
committed
fix bad hover title for debug internal module
1 parent 0642999 commit da49345

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/vs/workbench/browser/labels.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export class ResourceLabel extends IconLabel {
110110
const resource = this.label.resource;
111111

112112
let title = '';
113-
if (this.options && this.options.title) {
113+
if (this.options && typeof this.options.title === 'string') {
114114
title = this.options.title;
115115
} else if (resource) {
116116
title = getPathLabel(resource.fsPath);

0 commit comments

Comments
 (0)