mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Show external link url when hovering over book tree item (#6441)
* show url when hovering over tree item * show only for external links * show url for external links only
This commit is contained in:
@@ -119,4 +119,13 @@ export class BookTreeItem extends vscode.TreeItem {
|
|||||||
public get nextUri(): string {
|
public get nextUri(): string {
|
||||||
return this._nextUri;
|
return this._nextUri;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
get tooltip(): string {
|
||||||
|
if (this.book.type === BookTreeItemType.ExternalLink) {
|
||||||
|
return `${this._uri}`;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
return undefined;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user